/* ==========================================================================
   Susan Razavi — Conscious Integrative Therapy
   Modern homepage template styles
   Brand palette: cream ground, deep navy, warm gold, sage green
   ========================================================================== */

:root {
	--cream:        #f7f4ec;
	--cream-deep:   #efe9dc;
	--ivory:        #fffdf8;
	--navy:         #14304f;
	--navy-deep:    #0d2338;
	--navy-soft:    #2c4a6b;
	--gold:         #c9a24b;
	--gold-light:   #dcbd77;
	--gold-deep:    #a9822f;
	--sage:         #6b8e5a;
	--sage-deep:    #4f6d41;
	--ink:          #223243;
	--muted:        #5f6b76;
	--line:         rgba(20, 48, 79, 0.12);

	--serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--wrap: 1200px;
	--radius: 18px;
	--shadow-sm: 0 6px 24px rgba(20, 48, 79, 0.08);
	--shadow-md: 0 18px 50px rgba(20, 48, 79, 0.14);
	--shadow-lg: 0 30px 80px rgba(20, 48, 79, 0.20);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset / base within the template ---------------------------------- */
.srcit {
	font-family: var(--sans);
	color: var(--ink);
	background: var(--cream);
	line-height: 1.7;
	font-weight: 300;
	font-size: 17px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
.srcit *,
.srcit *::before,
.srcit *::after { box-sizing: border-box; }

.srcit img { max-width: 100%; display: block; height: auto; }
.srcit a { color: var(--navy); text-decoration: none; transition: color .25s var(--ease); }
.srcit a:hover { color: var(--gold-deep); }

.srcit h1, .srcit h2, .srcit h3, .srcit h4 {
	font-family: var(--serif);
	color: var(--navy);
	font-weight: 600;
	line-height: 1.12;
	margin: 0 0 .5em;
	letter-spacing: .01em;
}

.srcit .wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.srcit section { position: relative; }

.srcit .eyebrow {
	font-family: var(--sans);
	text-transform: uppercase;
	letter-spacing: .32em;
	font-size: 12px;
	font-weight: 500;
	color: var(--gold-deep);
	margin: 0 0 18px;
	display: inline-block;
}
.srcit .eyebrow.on-dark { color: var(--gold-light); }

.srcit .section-title {
	font-size: clamp(2rem, 4vw, 3.1rem);
	margin-bottom: .35em;
}
.srcit .lead {
	font-size: clamp(1.05rem, 1.6vw, 1.28rem);
	color: var(--muted);
	max-width: 640px;
	font-weight: 300;
}
.srcit .center { text-align: center; }
.srcit .center .lead { margin-left: auto; margin-right: auto; }

/* Gold divider flourish */
.srcit .flourish {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 18px 0;
}
.srcit .flourish::before,
.srcit .flourish::after {
	content: "";
	width: 46px; height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold));
}
.srcit .flourish::after { background: linear-gradient(90deg, var(--gold), transparent); }
.srcit .flourish span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ---- Buttons ----------------------------------------------------------- */
.srcit .btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--sans);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 16px 34px;
	border-radius: 999px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
	white-space: nowrap;
}
.srcit .btn-gold {
	background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
	color: #fff;
	box-shadow: 0 12px 30px rgba(169, 130, 47, 0.32);
}
.srcit .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(169, 130, 47, 0.42); color:#fff; }
.srcit .btn-navy { background: var(--navy); color: #fff; }
.srcit .btn-navy:hover { background: var(--navy-deep); transform: translateY(-3px); color:#fff; }
.srcit .btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.srcit .btn-ghost:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.srcit .btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.6); }
.srcit .btn-ghost.on-dark:hover { background: #fff; color: var(--navy); }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.srcit-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
	padding: 22px 0;
}
.srcit-header.scrolled {
	background: rgba(247, 244, 236, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 4px 24px rgba(20, 48, 79, 0.08);
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
}
.srcit-nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.srcit-brand { display: flex; align-items: center; gap: 12px; }
.srcit-brand .mark {
	width: 50px; height: 50px; flex: none;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--shadow-sm);
	border: 2px solid rgba(255,255,255,.85);
	transition: transform .3s var(--ease);
}
.srcit-brand:hover .mark { transform: scale(1.05) rotate(-3deg); }
.srcit-brand .mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.28); }
.srcit-header.scrolled .srcit-brand .mark { border-color: rgba(20,48,79,.12); }
.srcit-brand .name { line-height: 1.05; }
.srcit-brand .name b {
	font-family: var(--serif);
	font-weight: 600;
	font-size: 1.42rem;
	color: var(--navy);
	display: block;
	letter-spacing: .02em;
}
.srcit-brand .name small {
	font-family: var(--sans);
	font-size: 9.5px;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--sage-deep);
	font-weight: 500;
}
.srcit-header.transparent .name b { color: #fff; }
.srcit-header.transparent .name small { color: var(--gold-light); }
.srcit-header.transparent .srcit-menu a { color: rgba(255,255,255,.9); }
.srcit-header.transparent .srcit-menu a:hover { color: #fff; }
.srcit-header.transparent .hamburger span { background: #fff; }

.srcit-menu { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.srcit-menu a {
	font-family: var(--sans);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .06em;
	color: var(--navy);
	position: relative;
	padding: 6px 0;
}
.srcit-menu a::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 0; height: 1.5px; background: var(--gold);
	transition: width .3s var(--ease);
}
.srcit-menu a:hover::after { width: 100%; }
.srcit-nav-cta { display: flex; align-items: center; gap: 16px; }
.srcit-nav-cta .btn { padding: 12px 26px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s var(--ease); }

/* ==========================================================================
   Hero
   ========================================================================== */
.srcit-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}
.srcit-hero .slides { position: absolute; inset: 0; z-index: 0; }
.srcit-hero .slide {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	opacity: 0; transform: scale(1.08);
	transition: opacity 1.6s var(--ease), transform 7s linear;
}
.srcit-hero .slide.active { opacity: 1; transform: scale(1); }
.srcit-hero .overlay {
	position: absolute; inset: 0; z-index: 1;
	background:
		linear-gradient(90deg, rgba(13,35,56,.82) 0%, rgba(13,35,56,.52) 48%, rgba(13,35,56,.28) 100%),
		linear-gradient(0deg, rgba(13,35,56,.65) 0%, transparent 40%);
}
.srcit-hero .wrap { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; }
.srcit-hero .hero-inner { max-width: 720px; }
.srcit-hero .eyebrow { color: var(--gold-light); }
.srcit-hero h1 {
	color: #fff;
	font-size: clamp(2.6rem, 6vw, 4.6rem);
	font-weight: 600;
	line-height: 1.06;
	margin-bottom: .35em;
	text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.srcit-hero h1 em { font-style: italic; color: var(--gold-light); }
.srcit-hero .sub {
	font-size: clamp(1.1rem, 1.9vw, 1.4rem);
	font-weight: 300;
	color: rgba(255,255,255,.9);
	max-width: 560px;
	margin-bottom: 34px;
}
.srcit-hero .hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.srcit-hero .hero-meta {
	display: flex; flex-wrap: wrap; gap: 26px 40px;
	margin-top: 52px; padding-top: 30px;
	border-top: 1px solid rgba(255,255,255,.18);
}
.srcit-hero .hero-meta .stat b {
	font-family: var(--serif); font-size: 2.4rem; color: var(--gold-light);
	display: block; line-height: 1; font-weight: 600;
}
.srcit-hero .hero-meta .stat span {
	font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
	color: rgba(255,255,255,.75); font-weight: 400;
}
.srcit-hero .scroll-hint {
	position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
	z-index: 2; color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .3em;
	text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.srcit-hero .scroll-hint .line { width: 1px; height: 40px; background: rgba(255,255,255,.5); animation: srcit-scroll 2s var(--ease) infinite; }
@keyframes srcit-scroll { 0%{transform:scaleY(0);transform-origin:top;} 45%{transform:scaleY(1);transform-origin:top;} 55%{transform:scaleY(1);transform-origin:bottom;} 100%{transform:scaleY(0);transform-origin:bottom;} }
.srcit-hero .dots { position: absolute; bottom: 34px; right: 34px; z-index: 3; display: flex; gap: 10px; }
.srcit-hero .dots button { width: 10px; height: 10px; border-radius: 50%; border: 1px solid rgba(255,255,255,.7); background: transparent; cursor: pointer; padding: 0; transition: .3s; }
.srcit-hero .dots button.active { background: var(--gold-light); border-color: var(--gold-light); transform: scale(1.2); }

/* ==========================================================================
   Trust bar (press / credential logos)
   ========================================================================== */
.srcit-trust { background: var(--ivory); border-bottom: 1px solid var(--line); padding: 30px 0; }
.srcit-trust .row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px 48px; }
.srcit-trust .label { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.srcit-trust img { height: 38px; width: auto; object-fit: contain; opacity: .62; filter: grayscale(1); transition: .35s var(--ease); }
.srcit-trust img:hover { opacity: 1; filter: grayscale(0); }

/* ==========================================================================
   Intro / "Are you..." problem statement
   ========================================================================== */
.srcit-intro { padding: 110px 0; background: var(--cream); }
.srcit-intro .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.srcit-intro .quote {
	font-family: var(--serif); font-style: italic;
	font-size: clamp(1.8rem, 3.2vw, 2.7rem); color: var(--navy);
	line-height: 1.25; font-weight: 500;
}
.srcit-intro .quote span { color: var(--gold-deep); }
.srcit-intro .pain-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.srcit-intro .pain-list li {
	display: flex; gap: 14px; align-items: flex-start;
	background: var(--ivory); padding: 18px 22px; border-radius: 14px;
	border: 1px solid var(--line); box-shadow: var(--shadow-sm);
	transition: transform .3s var(--ease);
}
.srcit-intro .pain-list li:hover { transform: translateX(6px); }
.srcit-intro .pain-list .ic {
	flex: none; width: 34px; height: 34px; border-radius: 50%;
	background: rgba(107,142,90,.14); color: var(--sage-deep);
	display: grid; place-items: center; margin-top: 2px;
}
.srcit-intro .pain-list .ic svg { width: 18px; height: 18px; }
.srcit-intro .pain-list b { color: var(--navy); font-weight: 500; display: block; font-family: var(--sans); font-size: 16px; }

/* ==========================================================================
   Services
   ========================================================================== */
.srcit-services { padding: 120px 0; background: linear-gradient(180deg, var(--cream-deep), var(--cream)); }
.srcit-services .head { max-width: 700px; margin: 0 auto 64px; }
.srcit-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.srcit-card {
	background: var(--ivory); border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow-sm); border: 1px solid var(--line);
	transition: transform .45s var(--ease), box-shadow .45s var(--ease);
	display: flex; flex-direction: column;
}
.srcit-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.srcit-card .media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.srcit-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.srcit-card:hover .media img { transform: scale(1.08); }
.srcit-card .media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,35,56,.35)); }
.srcit-card .num {
	position: absolute; top: 16px; left: 16px; z-index: 2;
	font-family: var(--serif); font-size: 1rem; font-weight: 600; color: #fff;
	width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
	background: rgba(20,48,79,.55); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.3);
}
.srcit-card .body { padding: 30px 28px 34px; flex: 1; display: flex; flex-direction: column; }
.srcit-card h3 { font-size: 1.55rem; margin-bottom: .4em; }
.srcit-card p { color: var(--muted); margin: 0 0 22px; flex: 1; }
.srcit-card .more {
	font-family: var(--sans); font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
	font-weight: 500; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 8px;
}
.srcit-card .more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.srcit-card:hover .more svg { transform: translateX(5px); }

/* ==========================================================================
   About Susan
   ========================================================================== */
.srcit-about { padding: 120px 0; background: var(--navy); color: rgba(255,255,255,.86); overflow: hidden; }
.srcit-about .grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.srcit-about .portrait-wrap { position: relative; }
.srcit-about .portrait-wrap .frame {
	position: relative; border-radius: 20px; overflow: hidden;
	box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12);
}
.srcit-about .portrait-wrap .frame img { width: 100%; }
.srcit-about .portrait-wrap::before {
	content: ""; position: absolute; inset: -18px -18px 30px 30px;
	border: 1px solid var(--gold); border-radius: 22px; z-index: 0;
}
.srcit-about .cred-badge {
	position: absolute; bottom: -26px; left: -26px; z-index: 3;
	background: var(--gold); color: var(--navy-deep);
	border-radius: 16px; padding: 18px 22px; box-shadow: var(--shadow-md);
	font-family: var(--serif);
}
.srcit-about .cred-badge b { font-size: 2.2rem; display: block; line-height: 1; }
.srcit-about .cred-badge span { font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }
.srcit-about h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.srcit-about .eyebrow { color: var(--gold-light); }
.srcit-about p { margin: 0 0 20px; color: rgba(255,255,255,.8); font-weight: 300; }
.srcit-about .creds { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.srcit-about .creds span {
	font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
	padding: 8px 16px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: rgba(255,255,255,.9);
}
.srcit-about .sig { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--gold-light); margin-top: 10px; }

/* ==========================================================================
   Why choose (badges)
   ========================================================================== */
.srcit-why { padding: 120px 0; background: var(--cream); }
.srcit-why .grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 56px; }
.srcit-why .item { text-align: center; padding: 40px 28px; background: var(--ivory); border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease); }
.srcit-why .item:hover { transform: translateY(-8px); }
.srcit-why .item img { height: 84px; width: auto; margin: 0 auto 22px; }
.srcit-why .item h3 { font-size: 1.4rem; }
.srcit-why .item p { color: var(--muted); margin: 0; font-size: 15.5px; }

/* ==========================================================================
   Book feature
   ========================================================================== */
.srcit-book { padding: 130px 0; background: radial-gradient(120% 120% at 80% 0%, #1b3a5e 0%, var(--navy-deep) 60%); color: #fff; overflow: hidden; position: relative; }
.srcit-book::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 80%, rgba(201,162,75,.18), transparent 40%); }
.srcit-book .grid { position: relative; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: center; }
.srcit-book .cover { position: relative; justify-self: center; perspective: 1600px; }
.srcit-book .cover img {
	width: 300px; max-width: 78vw; border-radius: 6px;
	box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
	transform: rotateY(-16deg) rotateX(4deg); transition: transform .6s var(--ease);
}
.srcit-book .cover:hover img { transform: rotateY(-6deg) rotateX(2deg) translateY(-6px); }
.srcit-book .cover::after {
	content: ""; position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
	width: 240px; height: 40px; background: rgba(0,0,0,.4); filter: blur(30px); border-radius: 50%; z-index: -1;
}
.srcit-book .badge-book {
	position: absolute; top: -18px; right: -10px; z-index: 3;
	background: var(--gold); color: var(--navy-deep); font-family: var(--sans);
	font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
	padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow-md); transform: rotate(6deg);
}
.srcit-book h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.srcit-book .eyebrow { color: var(--gold-light); }
.srcit-book p { color: rgba(255,255,255,.82); margin: 0 0 22px; font-weight: 300; max-width: 560px; }
.srcit-book .book-points { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 12px; }
.srcit-book .book-points li { display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,.9); }
.srcit-book .book-points svg { width: 20px; height: 20px; color: var(--gold-light); flex: none; }
.srcit-book .formats { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 18px; }

/* ==========================================================================
   Event / speaking
   ========================================================================== */
.srcit-event { padding: 120px 0; background: var(--cream); }
.srcit-event .card {
	display: grid; grid-template-columns: 1fr 1.15fr; gap: 0;
	background: var(--ivory); border-radius: 22px; overflow: hidden;
	box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.srcit-event .card .pic { position: relative; min-height: 360px; }
.srcit-event .card .pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.srcit-event .card .info { padding: 54px 50px; }
.srcit-event .tag {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(201,162,75,.14); color: var(--gold-deep);
	font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
	padding: 8px 16px; border-radius: 999px; margin-bottom: 20px;
}
.srcit-event .tag .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(201,162,75,.6); animation: srcit-pulse 2s infinite; }
@keyframes srcit-pulse { 0%{box-shadow:0 0 0 0 rgba(201,162,75,.5);} 70%{box-shadow:0 0 0 12px rgba(201,162,75,0);} 100%{box-shadow:0 0 0 0 rgba(201,162,75,0);} }
.srcit-event h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.srcit-event .meta { display: flex; flex-wrap: wrap; gap: 14px 30px; margin: 24px 0 30px; }
.srcit-event .meta div { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 15px; }
.srcit-event .meta svg { width: 20px; height: 20px; color: var(--sage-deep); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.srcit-reviews { padding: 120px 0; background: linear-gradient(180deg, var(--cream), var(--cream-deep)); }
.srcit-reviews .head { max-width: 680px; margin: 0 auto 60px; }
.srcit-review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.srcit-quote {
	background: var(--ivory); border-radius: var(--radius); padding: 40px 38px;
	border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.srcit-quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.srcit-quote .mark { font-family: var(--serif); font-size: 5rem; line-height: .6; color: rgba(201,162,75,.28); position: absolute; top: 26px; right: 30px; }
.srcit-quote .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; font-size: 15px; }
.srcit-quote p { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--navy); line-height: 1.5; margin: 0 0 22px; font-weight: 500; }
.srcit-quote .who { display: flex; align-items: center; gap: 12px; }
.srcit-quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--sage), var(--navy)); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; }
.srcit-quote .who b { font-family: var(--sans); font-weight: 500; color: var(--navy); font-size: 15px; }
.srcit-quote .who span { font-size: 13px; color: var(--muted); display: block; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.srcit-faq { padding: 120px 0; background: var(--cream); }
.srcit-faq .grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.srcit-faq .aside { position: sticky; top: 110px; }
.srcit-faq .aside .lead { margin-bottom: 26px; }
.srcit-acc { border-top: 1px solid var(--line); }
.srcit-acc details { border-bottom: 1px solid var(--line); }
.srcit-acc summary {
	list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
	font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--navy);
	transition: color .25s var(--ease);
}
.srcit-acc summary::-webkit-details-marker { display: none; }
.srcit-acc summary:hover { color: var(--gold-deep); }
.srcit-acc summary::after {
	content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 14px;
	margin-top: -7px; background:
		linear-gradient(var(--gold-deep),var(--gold-deep)) center/14px 2px no-repeat,
		linear-gradient(var(--gold-deep),var(--gold-deep)) center/2px 14px no-repeat;
	transition: transform .3s var(--ease);
}
.srcit-acc details[open] summary::after { transform: rotate(135deg); }
.srcit-acc .ans { padding: 0 40px 26px 0; color: var(--muted); }
.srcit-acc .ans p { margin: 0; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.srcit-cta { position: relative; padding: 140px 0; color: #fff; text-align: center; overflow: hidden; }
.srcit-cta .bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.srcit-cta .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,35,56,.9), rgba(13,35,56,.7)); }
.srcit-cta .wrap { position: relative; z-index: 2; }
.srcit-cta h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); max-width: 800px; margin: 0 auto .4em; }
.srcit-cta p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 34px; font-size: 1.15rem; font-weight: 300; }
.srcit-cta .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.srcit-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 80px 0 30px; }
.srcit-footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.srcit-footer .brand-col .logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.srcit-footer .brand-col .logo .mark { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; background: #fff; border: 2px solid rgba(255,255,255,.25); flex: none; }
.srcit-footer .brand-col .logo .mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.28); }
.srcit-footer .brand-col .logo b { font-family: var(--serif); font-size: 1.4rem; color: #fff; display: block; }
.srcit-footer .brand-col .logo small { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-light); }
.srcit-footer .brand-col p { font-size: 15px; max-width: 300px; }
.srcit-footer h4 { color: #fff; font-family: var(--sans); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; font-weight: 500; }
.srcit-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.srcit-footer ul a { color: rgba(255,255,255,.7); font-size: 15px; }
.srcit-footer ul a:hover { color: var(--gold-light); }
.srcit-footer .contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.srcit-footer .contact svg { width: 18px; height: 18px; color: var(--gold-light); flex: none; margin-top: 3px; }
.srcit-footer .socials { display: flex; gap: 12px; margin-top: 20px; }
.srcit-footer .socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: #fff; }
.srcit-footer .socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }
.srcit-footer .socials svg { width: 18px; height: 18px; }
.srcit-footer .hours span { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; border-bottom: 1px dashed rgba(255,255,255,.1); }
.srcit-footer .bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.5); }
.srcit-footer .bottom a { color: rgba(255,255,255,.6); }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.srcit [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.srcit [data-reveal].in { opacity: 1; transform: none; }
.srcit [data-reveal][data-delay="1"] { transition-delay: .12s; }
.srcit [data-reveal][data-delay="2"] { transition-delay: .24s; }
.srcit [data-reveal][data-delay="3"] { transition-delay: .36s; }

/* Mobile menu panel */
.srcit-mobile { position: fixed; inset: 0; z-index: 1100; background: var(--navy-deep); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; visibility: hidden; transition: .4s var(--ease); }
.srcit-mobile.open { opacity: 1; visibility: visible; }
.srcit-mobile a { color: #fff; font-family: var(--serif); font-size: 2rem; padding: 10px; }
.srcit-mobile a:hover { color: var(--gold-light); }
.srcit-mobile .close { position: absolute; top: 26px; right: 26px; background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }
.srcit-mobile .btn { margin-top: 20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.srcit-intro .grid,
	.srcit-about .grid,
	.srcit-book .grid,
	.srcit-faq .grid { grid-template-columns: 1fr; gap: 46px; }
	.srcit-cards,
	.srcit-why .grid3 { grid-template-columns: repeat(2, 1fr); }
	.srcit-event .card { grid-template-columns: 1fr; }
	.srcit-event .card .pic { min-height: 280px; }
	.srcit-about .cred-badge { left: auto; right: 20px; bottom: -20px; }
	.srcit-footer .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
	.srcit { font-size: 16px; }
	.srcit-menu, .srcit-nav-cta .btn { display: none; }
	.hamburger { display: flex; }
	.srcit-hero .hero-meta { gap: 20px 28px; }
	.srcit-hero .dots { display: none; }
	.srcit-cards,
	.srcit-why .grid3,
	.srcit-review-grid,
	.srcit-footer .grid { grid-template-columns: 1fr; }
	.srcit-intro, .srcit-services, .srcit-about, .srcit-why, .srcit-book, .srcit-event, .srcit-reviews, .srcit-faq { padding: 80px 0; }
	.srcit-cta { padding: 100px 0; }
	.srcit .wrap { padding: 0 20px; }
	.srcit-book .cover img { transform: none; }
	.srcit-event .card .info { padding: 40px 28px; }
	.srcit-about .portrait-wrap::before { display: none; }
}

/* ==========================================================================
   INTERIOR PAGES — shared page hero
   ========================================================================== */
.srcit-page-hero {
	position: relative;
	padding: 175px 0 78px;
	background: radial-gradient(120% 130% at 80% -10%, #1b3a5e 0%, var(--navy-deep) 62%);
	color: #fff;
	overflow: hidden;
	text-align: center;
}
.srcit-page-hero.compact { padding: 165px 0 62px; }
.srcit-page-hero .ph-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; z-index: 0; }
.srcit-page-hero.has-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,35,56,.6), rgba(13,35,56,.82)); z-index: 0; }
.srcit-page-hero .wrap { position: relative; z-index: 1; }
.srcit-page-hero .crumb { display: block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.srcit-page-hero .crumb a { color: rgba(255,255,255,.75); }
.srcit-page-hero .crumb a:hover { color: var(--gold-light); }
.srcit-page-hero .eyebrow.on-dark { color: var(--gold-light); }
.srcit-page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: .3em; }
.srcit-page-hero .ph-sub { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto; font-size: clamp(1.02rem, 1.5vw, 1.2rem); font-weight: 300; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.srcit-about-intro { padding: 100px 0; background: var(--cream); }
.srcit-about-intro .grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; }
.srcit-about-intro .portrait-wrap { position: relative; }
.srcit-about-intro .frame { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }
.srcit-about-intro .frame img { width: 100%; }
.srcit-about-intro .portrait-wrap::before { content: ""; position: absolute; inset: -18px -18px 30px 30px; border: 1px solid var(--gold); border-radius: 22px; z-index: 0; }
.srcit-about-intro .cred-badge { position: absolute; bottom: -24px; left: -20px; z-index: 3; background: var(--gold); color: var(--navy-deep); border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-md); font-family: var(--serif); }
.srcit-about-intro .cred-badge b { font-size: 2rem; display: block; line-height: 1; }
.srcit-about-intro .cred-badge span { font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }
.srcit-about-intro p { color: var(--muted); margin: 0 0 18px; }
.srcit-about-intro .creds { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 30px; }
.srcit-about-intro .creds span { font-family: var(--sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--navy); background: var(--ivory); }

.srcit-approach { padding: 110px 0; background: linear-gradient(180deg, var(--cream-deep), var(--cream)); }
.srcit-approach .head { max-width: 720px; margin: 0 auto 60px; }
.srcit-approach .approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.srcit-approach .approach-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 30px; box-shadow: var(--shadow-sm); position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease); overflow: hidden; }
.srcit-approach .approach-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.srcit-approach .ac-num { font-family: var(--serif); font-size: 3rem; color: rgba(201,162,75,.28); font-weight: 700; line-height: 1; display: block; margin-bottom: 8px; }
.srcit-approach .approach-card h3 { font-size: 1.4rem; margin-bottom: .35em; }
.srcit-approach .approach-card p { color: var(--muted); margin: 0; font-size: 15.5px; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.srcit-contact { padding: 90px 0 110px; background: var(--cream); }
.srcit-contact .grid { display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 46px; align-items: start; }
.srcit-contact .form-col { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 46px 44px; box-shadow: var(--shadow-sm); }
.srcit-contact .form-col .section-title { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.srcit-contact .lead { margin-bottom: 26px; }
.srcit-form label { display: block; font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: .04em; color: var(--navy); margin-bottom: 18px; text-transform: uppercase; }
.srcit-form label span { color: var(--gold-deep); }
.srcit-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.srcit-form input, .srcit-form select, .srcit-form textarea {
	width: 100%; margin-top: 8px; padding: 13px 15px; font-family: var(--sans); font-size: 15px; font-weight: 300;
	color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 10px; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
	text-transform: none; letter-spacing: normal;
}
.srcit-form textarea { resize: vertical; }
.srcit-form input:focus, .srcit-form select:focus, .srcit-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.16); }
.srcit-form .btn { margin-top: 6px; border: 0; cursor: pointer; }
.srcit-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.srcit-form .privacy-note { display: flex; align-items: center; gap: 8px; margin: 18px 0 0; font-size: 13px; color: var(--muted); text-transform: none; letter-spacing: normal; font-weight: 300; }
.srcit-form .privacy-note svg { width: 18px; height: 18px; color: var(--sage-deep); flex: none; }

.srcit-alert { border-radius: 12px; padding: 16px 20px; margin-bottom: 26px; display: flex; flex-direction: column; gap: 4px; }
.srcit-alert strong { font-family: var(--sans); }
.srcit-alert.success { background: rgba(107,142,90,.12); border: 1px solid rgba(107,142,90,.4); color: var(--sage-deep); }
.srcit-alert.error { background: rgba(180,70,50,.08); border: 1px solid rgba(180,70,50,.35); color: #9b3b28; }

.srcit-contact .info-col { display: grid; gap: 22px; }
.srcit-contact .info-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.srcit-contact .info-card.highlight { background: var(--navy); color: rgba(255,255,255,.85); border-color: transparent; }
.srcit-contact .info-card.highlight h3 { color: #fff; }
.srcit-contact .info-card h3 { font-size: 1.35rem; margin-bottom: 18px; }
.srcit-contact .info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.srcit-contact .info-list li { display: flex; gap: 14px; align-items: flex-start; }
.srcit-contact .info-list .ic { flex: none; width: 40px; height: 40px; border-radius: 50%; background: rgba(107,142,90,.14); color: var(--sage-deep); display: grid; place-items: center; }
.srcit-contact .info-list .ic svg { width: 20px; height: 20px; }
.srcit-contact .info-list b { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.srcit-contact .hours-list { display: grid; gap: 8px; }
.srcit-contact .hours-list span { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.srcit-contact .hours-list em { color: var(--muted); font-style: normal; }
.srcit-contact .hours-list b { color: var(--navy); font-family: var(--sans); }
.srcit-contact .fine { font-size: 13px; color: var(--muted); margin: 14px 0 0; line-height: 1.6; }
.srcit-contact .info-card.highlight .fine { color: rgba(255,255,255,.6); }
.srcit-contact .fee-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.srcit-contact .fee-list li { display: flex; align-items: baseline; gap: 10px; color: rgba(255,255,255,.9); font-size: 15px; }
.srcit-contact .fee-list b { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-light); }

/* ==========================================================================
   LEGAL / PROSE PAGES (Privacy, Restrictions)
   ========================================================================== */
.srcit-legal { padding: 90px 0 110px; background: var(--cream); }
.srcit-legal .grid { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.srcit-legal .toc { position: sticky; top: 108px; }
.srcit-legal .toc h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.srcit-legal .toc nav { display: grid; gap: 2px; border-left: 2px solid var(--line); }
.srcit-legal .toc nav a { font-size: 14px; color: var(--muted); padding: 7px 0 7px 16px; margin-left: -2px; border-left: 2px solid transparent; transition: .25s var(--ease); }
.srcit-legal .toc nav a:hover { color: var(--navy); border-left-color: var(--gold); }
.srcit-legal .toc-cta { margin-top: 26px; padding: 22px; background: var(--ivory); border: 1px solid var(--line); border-radius: 14px; }
.srcit-legal .toc-cta p { font-size: 14px; color: var(--muted); margin: 0 0 14px; }
.srcit-legal .toc-cta .btn { padding: 11px 22px; font-size: 12px; }

.srcit-prose { max-width: 760px; }
.srcit-prose h2 { font-size: 1.7rem; margin: 44px 0 14px; scroll-margin-top: 100px; }
.srcit-prose h2:first-child { margin-top: 0; }
.srcit-prose p { color: var(--ink); margin: 0 0 18px; font-weight: 300; }
.srcit-prose ul { margin: 0 0 18px; padding-left: 22px; display: grid; gap: 8px; }
.srcit-prose li { color: var(--ink); font-weight: 300; }
.srcit-prose a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.srcit-prose a:hover { color: var(--navy); }
.srcit-prose .prose-note { margin-top: 40px; padding: 18px 22px; background: rgba(201,162,75,.08); border-left: 3px solid var(--gold); border-radius: 8px; font-size: 14px; color: var(--muted); font-style: italic; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.srcit-blog { padding: 90px 0 110px; background: var(--cream); }
.srcit-blog .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-card .media { display: block; position: relative; aspect-ratio: 3/2; overflow: hidden; }
.blog-card .media img, .blog-card .media .media-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background-size: cover; background-position: center; transition: transform .8s var(--ease); }
.blog-card:hover .media img, .blog-card:hover .media .media-fallback { transform: scale(1.07); }
.blog-card .body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.blog-card .meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.blog-card .meta .date { font-size: 12px; letter-spacing: .06em; color: var(--muted); }
.blog-card .meta .cat { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; padding: 3px 10px; background: rgba(201,162,75,.12); border-radius: 999px; }
.blog-card h3 { font-size: 1.4rem; line-height: 1.2; margin-bottom: .4em; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--gold-deep); }
.blog-card p { color: var(--muted); font-size: 15px; margin: 0 0 20px; flex: 1; }
.blog-card .more { font-family: var(--sans); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 8px; }
.blog-card .more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.blog-card:hover .more svg { transform: translateX(5px); }

.srcit-pagination { margin-top: 54px; display: flex; justify-content: center; }
.srcit-pagination ul { list-style: none; display: flex; gap: 8px; padding: 0; margin: 0; }
.srcit-pagination a, .srcit-pagination span { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 14px; border-radius: 10px; border: 1px solid var(--line); background: var(--ivory); font-family: var(--sans); font-size: 14px; color: var(--navy); }
.srcit-pagination a:hover { border-color: var(--gold); color: var(--gold-deep); }
.srcit-pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

.blog-empty { text-align: center; max-width: 560px; margin: 40px auto; padding: 60px 30px; }
.blog-empty .ic { width: 72px; height: 72px; border-radius: 50%; background: rgba(20,48,79,.06); color: var(--navy); display: grid; place-items: center; margin: 0 auto 24px; }
.blog-empty .ic svg { width: 34px; height: 34px; }
.blog-empty h2 { font-size: 2rem; }
.blog-empty .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ==========================================================================
   Interior responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.srcit-about-intro .grid { grid-template-columns: 1fr; gap: 60px; }
	.srcit-approach .approach-grid { grid-template-columns: repeat(2, 1fr); }
	.srcit-contact .grid { grid-template-columns: 1fr; }
	.srcit-legal .grid { grid-template-columns: 1fr; gap: 34px; }
	.srcit-legal .toc { position: static; }
	.srcit-legal .toc nav { display: flex; flex-wrap: wrap; gap: 6px; border-left: 0; }
	.srcit-legal .toc nav a { border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; margin: 0; }
	.srcit-legal .toc-cta { display: none; }
	.srcit-blog .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
	.srcit-page-hero { padding: 140px 0 54px; }
	.srcit-approach .approach-grid, .srcit-blog .blog-grid { grid-template-columns: 1fr; }
	.srcit-form .row { grid-template-columns: 1fr; }
	.srcit-contact .form-col { padding: 34px 24px; }
	.srcit-about-intro, .srcit-approach, .srcit-contact, .srcit-legal, .srcit-blog { padding: 70px 0; }
	.srcit-about-intro .portrait-wrap::before { display: none; }
}
