*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

:root {
	--ink: #1d1c16;
	--ink-soft: #46443a;
	--ink-mute: #857f6c;
	--paper: #f5f1e7;
	--panel: #efe8d6;
	--card: #fffdf6;
	--line: #ddd3bd;
	--line-2: #e9e1cd;
	--pine: #1f3d33;
	--pine-2: #2c5546;
	--pine-deep: #16302a;
	--brass: #9a7733;
	--brass-2: #c2a05f;
	--brass-pale: #ece0c2;
	--wa: #1f9d57;
	--wa-dark: #157a43;
	--ok: #2d7d46;
	--ok-bg: #e9f2eb;
	--ok-bd: #bcd9c4;
	--shadow-sm: 0 1px 2px rgba(31, 61, 51, .05);
	--shadow: 0 1px 2px rgba(31, 61, 51, .05), 0 10px 30px rgba(31, 61, 51, .07);
	--shadow-lg: 0 24px 60px rgba(31, 61, 51, .13);
	--serif: 'Fraunces', Georgia, 'Times New Roman', serif;
	--sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
	--wrap: 1100px;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%
}

body {
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 15px;
	line-height: 1.65;
	font-weight: 400;
	background-image: radial-gradient(rgba(31, 61, 51, .025) 1px, transparent 1px);
	background-size: 22px 22px
}

::selection {
	background: var(--pine);
	color: var(--paper)
}

img {
	max-width: 100%;
	display: block
}

a {
	color: inherit;
	text-decoration: none
}

h1,
h2,
h3,
h4 {
	font-family: var(--serif);
	font-optical-sizing: auto;
	font-weight: 400;
	letter-spacing: -0.015em;
	color: var(--ink)
}

.site {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 2rem
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	font-size: 12px;
	padding: 6px 12px;
	background: var(--pine);
	color: #fff;
	border-radius: 3px
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	z-index: 9999
}

/* shared eyebrow / labels */
.eyebrow,
.section-label,
.topbar-tag {
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase
}

.section-label {
	color: var(--brass);
	margin-bottom: 0.7rem;
	display: inline-flex;
	align-items: center;
	gap: 9px
}

.section-label::before {
	content: '';
	width: 22px;
	height: 1px;
	background: var(--brass)
}

/* buttons */
.btn-gold {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--pine);
	color: #f3ecd8;
	font-family: var(--sans);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	padding: 13px 26px;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	transition: .22s ease;
	box-shadow: var(--shadow-sm)
}

.btn-gold:hover {
	background: var(--pine-2);
	transform: translateY(-1px);
	box-shadow: var(--shadow)
}

.btn-gold i {
	font-size: 14px
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--ink);
	font-family: var(--sans);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 12px 24px;
	border-radius: 2px;
	cursor: pointer;
	transition: .22s ease
}

.btn-outline:hover {
	background: var(--ink);
	color: var(--paper)
}

.btn-line {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: var(--pine);
	border: 1px solid var(--brass);
	font-family: var(--sans);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 11px 22px;
	border-radius: 2px;
	cursor: pointer;
	transition: .22s ease
}

.btn-line:hover {
	background: var(--pine);
	color: var(--paper);
	border-color: var(--pine)
}

/* TOPBAR */
.topbar {
	background: var(--pine-deep);
	color: #d7d0bc;
	font-size: 12px
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 8px 0;
	flex-wrap: wrap
}

.topbar-tag {
	color: var(--brass-2);
	font-size: 10px;
	letter-spacing: 0.2em
}

.topbar-contacts {
	display: flex;
	align-items: center;
	gap: 1.3rem;
	flex-wrap: wrap
}

.topbar-contacts a,
.topbar-hours {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #d7d0bc;
	transition: color .2s
}

.topbar-contacts a:hover {
	color: #fff
}

.topbar-contacts i {
	color: var(--brass-2);
	font-size: 13px
}

/* MASTHEAD */
.masthead {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(245, 241, 231, .9);
	backdrop-filter: saturate(150%) blur(9px);
	border-bottom: 1px solid var(--line)
}

.masthead-inner {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	padding: 0.95rem 2rem
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	flex-shrink: 0
}

.brand-mark {
	height: 42px;
	width: auto;
	flex-shrink: 0;
	display: block;
	object-fit: contain
}

.brand-text {
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.05;
	color: var(--ink)
}

.brand-text span {
	display: block;
	font-family: var(--sans);
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--brass);
	margin-top: 3px
}

.mast-nav {
	margin-left: auto
}

.mast-toggle {
	display: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 8px;
	width: 42px;
	height: 42px;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	flex-shrink: 0;
	margin-left: 4px;
	border-radius: 4px
}

.mast-toggle:hover {
	background: rgba(31, 61, 51, .06)
}

.mast-toggle:focus-visible {
	outline: 2px solid var(--brass);
	outline-offset: 2px
}

.mast-toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--pine);
	border-radius: 2px;
	transition: transform .25s cubic-bezier(.2, .7, .3, 1), opacity .2s
}

.mast-toggle[aria-expanded="true"] .mast-toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg)
}

.mast-toggle[aria-expanded="true"] .mast-toggle-bar:nth-child(2) {
	opacity: 0
}

.mast-toggle[aria-expanded="true"] .mast-toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg)
}

.nav-links {
	display: flex;
	gap: 1.6rem;
	list-style: none;
	flex-wrap: wrap
}

.nav-links a {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-soft);
	cursor: pointer;
	padding-bottom: 3px;
	border-bottom: 1.5px solid transparent;
	transition: .2s
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--pine);
	border-bottom-color: var(--brass)
}

.mast-cta {
	flex-shrink: 0;
	padding: 10px 18px;
	font-size: 10.5px
}

.section-page+.section-page {
	border-top: 1px solid var(--line)
}

/* HERO */
.hero {
	position: relative;
	display: grid;
	grid-template-columns: 1.25fr 0.85fr;
	gap: 3rem;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
	padding: 4.5rem 2rem 4rem;
	border-bottom: 1px solid var(--line);
	overflow: hidden
}

.hero::before {
	content: '';
	position: absolute;
	left: -2rem;
	right: -2rem;
	top: 0;
	bottom: 0;
	background: radial-gradient(120% 90% at 85% 10%, rgba(154, 119, 51, .10), transparent 55%);
	pointer-events: none;
	z-index: 0
}

.hero>* {
	position: relative;
	z-index: 1
}

.hero-lead .eyebrow {
	color: var(--brass);
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 1.3rem
}

.hero-lead .eyebrow::before {
	content: '';
	width: 26px;
	height: 1px;
	background: var(--brass)
}

.hero h1 {
	font-size: clamp(40px, 5.6vw, 64px);
	font-weight: 300;
	line-height: 1.02;
	margin-bottom: 1.3rem;
	letter-spacing: -0.02em
}

.hero h1 em {
	font-style: italic;
	font-weight: 400;
	color: var(--pine)
}

.hero-desc {
	font-size: 15px;
	color: var(--ink-soft);
	line-height: 1.8;
	max-width: 500px;
	margin-bottom: 1.9rem
}

.hero-actions {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap
}

.hero-panel {
	position: relative;
	background: var(--card);
	border: 1px solid var(--line);
	border-top: 3px solid var(--pine);
	border-radius: 6px;
	padding: 1.9rem;
	box-shadow: var(--shadow);
	overflow: hidden
}

.hero-mark {
	position: absolute;
	right: -12px;
	bottom: -34px;
	font-family: var(--serif);
	font-weight: 300;
	font-size: 140px;
	line-height: 1;
	color: rgba(31, 61, 51, .05);
	pointer-events: none;
	user-select: none
}

.hero-panel-title {
	font-family: var(--serif);
	font-style: italic;
	font-size: 18px;
	color: var(--pine);
	margin-bottom: 1rem;
	padding-bottom: 0.7rem;
	border-bottom: 1px solid var(--line)
}

.hci {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 0.62rem 0;
	border-bottom: 1px solid var(--line-2);
	font-size: 13.5px;
	color: var(--ink-soft)
}

.hci:last-of-type {
	border-bottom: none
}

.hci i {
	color: var(--brass);
	font-size: 16px;
	flex-shrink: 0
}

.hci a {
	color: var(--ink);
	font-weight: 600
}

.hci a:hover {
	color: var(--pine)
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--brass-pale);
	border: 1px solid var(--brass);
	color: var(--pine);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 6px 12px;
	margin-top: 1.1rem;
	border-radius: 2px
}

.hero-portrait {
	text-align: center;
	padding: 0.8rem
}

.hero-photo-frame {
	display: inline-block;
	padding: 12px;
	background: var(--card);
	border: 1px solid var(--brass);
	box-shadow: 0 6px 22px rgba(31, 61, 51, .12), inset 0 0 0 1px var(--brass-pale);
	border-radius: 3px;
	max-width: 100%
}

.hero-photo-frame img {
	display: block;
	width: 100%;
	max-width: 340px;
	aspect-ratio: 1/1;
	height: auto;
	object-fit: cover;
	object-position: top;
	border-radius: 2px
}

.hero-photo-name {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 500;
	color: var(--pine);
	margin-top: 1.1rem
}

.hero-photo-title {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--brass);
	margin-top: 5px
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(14px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

.hero-lead>* {
	animation: rise .7s cubic-bezier(.2, .7, .3, 1) both
}

.hero-lead>*:nth-child(2) {
	animation-delay: .06s
}

.hero-lead>*:nth-child(3) {
	animation-delay: .12s
}

.hero-lead>*:nth-child(4) {
	animation-delay: .18s
}

.hero-panel {
	animation: rise .8s cubic-bezier(.2, .7, .3, 1) .12s both
}

@media(prefers-reduced-motion:reduce) {

	.hero-lead>*,
	.hero-panel {
		animation: none
	}
}

/* PORTAL BAR */
.portal-bar {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: 0.85rem 1.3rem;
	margin: 2rem 0 0;
	display: flex;
	align-items: center;
	gap: 0.55rem;
	flex-wrap: wrap
}

.portal-bar-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-mute);
	margin-right: 0.4rem;
	flex-shrink: 0
}

.portal-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11.5px;
	font-weight: 500;
	color: var(--pine);
	border: 1px solid var(--line);
	padding: 5px 11px;
	border-radius: 20px;
	transition: .2s
}

.portal-link:hover {
	background: var(--pine);
	color: var(--paper);
	border-color: var(--pine)
}

.portal-link i {
	font-size: 12px
}

.portal-divider {
	display: none
}

/* TRUST BAR */
.trust-bar {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 2rem 0;
	background: transparent;
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink)
}

.trust-item {
	padding: 1.5rem 1rem;
	text-align: center;
	border-right: 1px solid var(--line)
}

.trust-item:last-child {
	border-right: none
}

.trust-num {
	font-family: var(--serif);
	font-size: 42px;
	font-weight: 300;
	color: var(--pine);
	line-height: 1
}

.trust-label {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-mute);
	margin-top: 7px
}

/* REVIEWS */
.reviews-bar {
	background: var(--card);
	border: 1px solid var(--line);
	border-left: 3px solid var(--brass);
	border-radius: 4px;
	padding: 1.6rem 1.8rem;
	margin: 2rem 0;
	display: flex;
	align-items: center;
	gap: 2.2rem;
	flex-wrap: wrap
}

.reviews-rating {
	text-align: center;
	flex-shrink: 0
}

.reviews-num {
	font-family: var(--serif);
	font-size: 52px;
	font-weight: 300;
	color: var(--pine);
	line-height: 1
}

.reviews-stars {
	color: var(--brass-2);
	font-size: 18px;
	letter-spacing: 3px;
	margin: 5px 0
}

.reviews-count {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-mute)
}

.reviews-divider {
	width: 1px;
	align-self: stretch;
	background: var(--line);
	flex-shrink: 0
}

.reviews-text {
	flex: 1;
	min-width: 240px
}

.reviews-text p {
	font-family: var(--serif);
	font-size: 18px;
	font-style: italic;
	color: var(--ink-soft);
	line-height: 1.55
}

.reviews-text a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brass);
	margin-top: 11px;
	border-bottom: 1px solid transparent
}

.reviews-text a:hover {
	border-bottom-color: var(--brass)
}

/* SEO BAND */
.seo-band {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 1.2rem 0;
	margin: 0 0 1rem
}

.seo-band p {
	font-size: 12.5px;
	color: var(--ink-mute);
	line-height: 1.85
}

.seo-band strong {
	color: var(--ink-soft);
	font-weight: 600
}

/* SECTIONS */
.section-title {
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 300;
	margin-bottom: 1.8rem;
	line-height: 1.08
}

.section-wrap {
	padding: 3.2rem 0
}

.section-wrap+.section-wrap {
	border-top: 1px solid var(--line)
}

/* SERVICES GRID */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: 6px;
	overflow: hidden
}

.service-card {
	background: var(--card);
	padding: 1.6rem;
	transition: .2s;
	cursor: pointer;
	position: relative
}

.service-card:hover {
	background: #fff;
	box-shadow: inset 0 2px 0 var(--brass)
}

.service-icon {
	font-size: 22px;
	color: var(--brass);
	margin-bottom: 0.8rem
}

.service-name {
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 400;
	color: var(--ink);
	margin-bottom: 0.4rem;
	line-height: 1.2
}

.service-desc {
	font-size: 12.5px;
	color: var(--ink-mute);
	line-height: 1.7
}

.service-enquire {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--brass);
	margin-top: 0.9rem
}

/* ABOUT */
.about-section {
	display: grid;
	grid-template-columns: 180px 1.05fr 1.8fr;
	gap: 2.6rem;
	align-items: start;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 2.6rem;
	margin: 2.6rem 0;
	box-shadow: var(--shadow-sm)
}

.about-photo {
	text-align: center
}

.about-photo img {
	width: 150px;
	height: 190px;
	object-fit: cover;
	object-position: top;
	border-radius: 4px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow)
}

.about-photo-name {
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 500;
	color: var(--pine);
	margin-top: 11px
}

.about-photo-title {
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--brass);
	margin-top: 4px
}

.about-quote {
	font-family: var(--serif);
	font-size: 23px;
	font-weight: 300;
	font-style: italic;
	line-height: 1.45;
	color: var(--pine);
	border-left: 2px solid var(--brass);
	padding-left: 1.3rem
}

.about-body {
	font-size: 13.5px;
	color: var(--ink-soft);
	line-height: 1.9
}

.about-body .section-label {
	margin-bottom: 0.9rem
}

.about-body p+p {
	margin-top: 0.9rem
}

.about-tag {
	display: inline-block;
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: var(--paper);
	border: 1px solid var(--brass);
	color: var(--pine);
	padding: 5px 10px;
	margin: 0.8rem 5px 0 0;
	border-radius: 2px
}

/* SPEC */
.spec-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.3rem;
	margin-top: 1.6rem
}

.spec-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 1.6rem;
	transition: .2s
}

.spec-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow)
}

.spec-num {
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 300;
	color: var(--brass-2)
}

.spec-title {
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 400;
	color: var(--pine);
	margin: 0.4rem 0 0.4rem
}

.spec-text {
	font-size: 12.5px;
	color: var(--ink-mute);
	line-height: 1.7
}

/* FAQ ACCORDION */
.faq-accordion {
	margin-top: 1.8rem;
	border-top: 1px solid var(--line)
}

.faq-item {
	border-bottom: 1px solid var(--line);
	background: transparent
}

.faq-item>summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 0.2rem;
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 400;
	color: var(--ink);
	transition: color .2s
}

.faq-item>summary::-webkit-details-marker {
	display: none
}

.faq-item>summary:hover {
	color: var(--pine)
}

.faq-ico {
	position: relative;
	width: 16px;
	height: 16px;
	flex-shrink: 0
}

.faq-ico::before,
.faq-ico::after {
	content: '';
	position: absolute;
	background: var(--brass);
	transition: transform .25s ease
}

.faq-ico::before {
	top: 7px;
	left: 0;
	width: 16px;
	height: 2px
}

.faq-ico::after {
	top: 0;
	left: 7px;
	width: 2px;
	height: 16px
}

.faq-item[open]>summary {
	color: var(--pine)
}

.faq-item[open] .faq-ico::after {
	transform: scaleY(0)
}

.faq-a {
	font-size: 13.5px;
	color: var(--ink-soft);
	line-height: 1.8;
	padding: 0 2.4rem 1.3rem 0.2rem;
	max-width: 780px
}

/* ICAI BAR */
.icai-bar {
	background: var(--panel);
	border: 1px solid var(--line);
	border-left: 3px solid var(--brass);
	border-radius: 4px;
	padding: 1rem 1.3rem;
	margin: 2rem 0 0;
	display: flex;
	gap: 0.9rem;
	align-items: flex-start
}

.icai-bar i {
	color: var(--brass);
	font-size: 17px;
	flex-shrink: 0;
	margin-top: 1px
}

.icai-bar p {
	font-size: 11.5px;
	color: var(--ink-soft);
	line-height: 1.7
}

.icai-bar strong {
	color: var(--pine);
	font-weight: 700
}

/* SERVICES FULL */
.services-full-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.3rem;
	margin-top: 1.9rem
}

.svc-full-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 1.8rem;
	transition: .2s
}

.svc-full-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-2px)
}

.svc-full-card h3 {
	font-family: var(--serif);
	font-size: 21px;
	font-weight: 400;
	color: var(--pine);
	margin: 0.6rem 0 0.7rem
}

.svc-full-card ul {
	list-style: none;
	padding: 0
}

.svc-full-card ul li {
	font-size: 12.5px;
	color: var(--ink-soft);
	padding: 6px 0;
	border-bottom: 1px solid var(--line-2);
	display: flex;
	gap: 9px;
	align-items: flex-start;
	line-height: 1.55
}

.svc-full-card ul li:last-child {
	border-bottom: none
}

.svc-full-card ul li::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--brass);
	flex-shrink: 0;
	margin-top: 7px
}

.svc-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: var(--paper);
	color: var(--pine);
	border: 1px solid var(--brass);
	padding: 4px 10px;
	border-radius: 2px
}

/* USEFUL LINKS */
.links-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.3rem;
	margin-top: 1.8rem
}

.link-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 1.5rem 1.2rem;
	text-align: center;
	transition: .2s
}

.link-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
	border-color: var(--brass)
}

.link-card i {
	font-size: 28px;
	margin-bottom: 0.6rem;
	display: block;
	color: var(--pine)
}

.link-card-name {
	font-family: var(--serif);
	font-size: 17px;
	font-weight: 400;
	color: var(--ink);
	margin-bottom: 0.25rem
}

.link-card-desc {
	font-size: 11px;
	color: var(--ink-mute);
	line-height: 1.55;
	margin-top: 6px
}

/* CONTACT */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 1.9rem
}

.contact-info h3,
.contact-form-wrap h3 {
	font-family: var(--serif);
	font-size: 23px;
	font-weight: 400;
	color: var(--pine);
	margin-bottom: 1.1rem
}

.contact-row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 0.9rem 0;
	border-bottom: 1px solid var(--line-2)
}

.contact-row:last-of-type {
	border-bottom: none
}

.contact-row i {
	font-size: 17px;
	color: var(--brass);
	flex-shrink: 0;
	margin-top: 2px
}

.contact-row-label {
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-mute);
	margin-bottom: 3px
}

.contact-row-value {
	font-size: 13.5px;
	color: var(--ink);
	line-height: 1.6
}

.contact-row-value a {
	color: var(--ink);
	font-weight: 600
}

.contact-row-value a:hover {
	color: var(--pine)
}

.hours-grid {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 3px 14px;
	font-size: 12.5px;
	color: var(--ink-soft);
	margin-top: 4px
}

.hours-grid span {
	color: var(--ink)
}

.wa-row {
	display: flex;
	align-items: center;
	gap: 11px;
	background: var(--ok-bg);
	border: 1px solid var(--ok-bd);
	border-radius: 4px;
	padding: 0.85rem 1.1rem;
	margin-top: 1rem
}

.wa-row i {
	color: var(--wa);
	font-size: 23px;
	flex-shrink: 0
}

.wa-row-body {
	flex: 1
}

.wa-row-label {
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wa-dark);
	margin-bottom: 2px
}

.wa-row-value {
	font-size: 13.5px;
	font-weight: 600
}

.wa-row-value a {
	color: var(--ink)
}

.btn-wa-sm {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--wa);
	color: #fff;
	padding: 8px 14px;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 3px;
	transition: .2s
}

.btn-wa-sm:hover {
	background: var(--wa-dark)
}

.map-wrapper {
	border: 1px solid var(--line);
	border-radius: 6px;
	overflow: hidden;
	margin-top: 1.4rem
}

.map-wrapper iframe {
	display: block;
	width: 100%;
	height: 230px;
	border: none
}

.map-caption {
	font-size: 11px;
	color: var(--ink-mute);
	padding: 9px 12px;
	border-top: 1px solid var(--line);
	display: flex;
	align-items: center;
	gap: 6px;
	background: var(--card)
}

.map-caption i {
	color: var(--brass);
	font-size: 13px
}

.map-caption a {
	color: var(--pine);
	font-weight: 600;
	margin-left: auto
}

/* CONTACT FORM */
.cf {
	display: flex;
	flex-direction: column;
	gap: 0.8rem
}

.cf input,
.cf select,
.cf textarea {
	background: var(--card);
	border: 1px solid var(--line);
	color: var(--ink);
	padding: 12px 14px;
	font-family: var(--sans);
	font-size: 13.5px;
	outline: none;
	transition: .2s;
	width: 100%;
	border-radius: 3px
}

.cf input::placeholder,
.cf textarea::placeholder {
	color: var(--ink-mute)
}

.cf input:focus,
.cf select:focus,
.cf textarea:focus {
	border-color: var(--pine);
	box-shadow: 0 0 0 3px rgba(31, 61, 51, .08)
}

.cf select {
	appearance: none;
	color: var(--ink-soft)
}

.cf textarea {
	resize: none;
	height: 92px
}

.cf-submit {
	background: var(--pine);
	color: #f3ecd8;
	border: none;
	padding: 14px;
	font-family: var(--sans);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	cursor: pointer;
	transition: .2s;
	width: 100%;
	border-radius: 3px
}

.cf-submit:hover {
	background: var(--pine-2)
}

.cf-note {
	font-size: 11px;
	color: var(--ink-mute);
	line-height: 1.65
}

.form-success {
	display: none;
	background: var(--ok-bg);
	border: 1px solid var(--ok-bd);
	border-radius: 6px;
	padding: 1.4rem;
	text-align: center;
	color: var(--ok)
}

/* QR */
.qr-section {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 1.6rem;
	display: flex;
	gap: 1.6rem;
	align-items: center;
	margin-top: 1.5rem
}

.qr-box {
	flex-shrink: 0;
	text-align: center
}

.qr-img {
	width: 120px;
	height: 120px;
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 6px;
	background: #fff
}

.qr-label {
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-mute);
	margin-top: 7px
}

.qr-info h4 {
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 400;
	color: var(--pine);
	margin-bottom: 0.5rem
}

.qr-info p {
	font-size: 12.5px;
	color: var(--ink-soft);
	line-height: 1.7;
	margin-bottom: 0.9rem
}

.qr-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--pine);
	border: 1px solid var(--brass);
	padding: 8px 16px;
	border-radius: 3px;
	transition: .2s
}

.qr-link:hover {
	background: var(--pine);
	color: var(--paper);
	border-color: var(--pine)
}

/* FOOTER */
footer {
	background: var(--pine-deep);
	color: #cfc8b4;
	margin-top: 3.5rem;
	padding: 3rem 0 1.6rem
}

.footer-inner {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 2rem
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
	gap: 2.2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-brand-block {
	display: flex;
	flex-direction: column;
	gap: 0.9rem
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 0.7rem
}

.footer-brand .brand-mark {
	height: 48px;
	background: none;
	padding: 0
}

.footer-brand-name {
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	line-height: 1.1
}

.footer-brand-name span {
	display: block;
	font-family: var(--sans);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--brass-2);
	margin-top: 3px
}

.footer-blurb {
	font-size: 12px;
	color: #a9a18d;
	line-height: 1.7;
	max-width: 300px
}

.footer-col h4 {
	font-family: var(--sans);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--brass-2);
	margin-bottom: 0.9rem
}

.footer-col ul {
	list-style: none
}

.footer-col li {
	margin-bottom: 0.55rem
}

.footer-col a,
.footer-col span {
	font-size: 12.5px;
	color: #cfc8b4;
	cursor: pointer;
	transition: color .2s;
	line-height: 1.5
}

.footer-col a:hover {
	color: #fff
}

.footer-contact-row {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 12.5px;
	color: #cfc8b4;
	margin-bottom: 0.6rem;
	line-height: 1.5
}

.footer-contact-row i {
	color: var(--brass-2);
	font-size: 14px;
	flex-shrink: 0;
	margin-top: 2px
}

.social-links {
	display: flex;
	gap: 0.55rem;
	align-items: center;
	margin-top: 0.3rem
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .22);
	color: #cfc8b4;
	font-size: 15px;
	transition: .2s
}

.social-link:hover {
	background: var(--brass);
	color: var(--pine-deep);
	border-color: var(--brass)
}

.icai-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, .06);
	color: var(--brass-2);
	padding: 5px 10px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 2px;
	align-self: flex-start
}

.footer-disclaimer {
	font-size: 10.5px;
	color: #8f886f;
	line-height: 1.7;
	max-width: 900px;
	margin: 1.4rem 0 1.1rem
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-bottom span {
	font-size: 11px;
	color: #8f886f
}

.ssl-footer {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--brass-2);
	font-size: 11px
}

/* WA FLOAT */
.wa-float {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 999;
	background: var(--wa);
	color: #fff;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(31, 157, 87, .45);
	transition: transform .2s
}

.wa-float:hover {
	transform: scale(1.08)
}

.wa-float i {
	font-size: 28px
}

.wa-tooltip {
	position: absolute;
	right: 64px;
	background: var(--ink);
	color: #fff;
	font-size: 11px;
	padding: 6px 11px;
	white-space: nowrap;
	border-radius: 4px;
	opacity: 0;
	transition: opacity .2s;
	pointer-events: none
}

.wa-float:hover .wa-tooltip {
	opacity: 1
}

/* MOBILE CONTACT STRIP */
.mobile-contact-strip {
	display: none;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 0.9rem 1rem;
	margin-top: 1.3rem;
	gap: 0.6rem 1.1rem;
	flex-wrap: wrap
}

.mobile-contact-strip a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	color: var(--ink);
	font-weight: 600
}

.mobile-contact-strip a i {
	color: var(--brass);
	font-size: 15px
}

/* RESPONSIVE */
@media(max-width:880px) {
	.hero {
		grid-template-columns: 1fr;
		gap: 1.6rem;
		padding: 2.6rem 1.4rem 2.6rem;
		text-align: center
	}

	.hero-lead {
		display: flex;
		flex-direction: column;
		align-items: center
	}

	.hero-desc {
		margin-left: auto;
		margin-right: auto
	}

	.hero-actions {
		justify-content: center
	}

	.hero-portrait {
		order: -1;
		background: none;
		border: none;
		border-top: none;
		box-shadow: none;
		padding: 0;
		margin-bottom: 0.4rem
	}

	.hero-photo-frame img {
		max-width: 240px
	}

	.mobile-contact-strip {
		display: flex;
		justify-content: center
	}

	.services-full-grid,
	.contact-grid {
		grid-template-columns: 1fr
	}

	.links-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr
	}

	.about-section {
		grid-template-columns: 1fr;
		gap: 1.6rem
	}

	.about-photo {
		display: flex;
		gap: 1.2rem;
		align-items: center;
		text-align: left
	}
}

@media(max-width:880px) {
	.mast-toggle {
		display: inline-flex;
		margin-left: auto
	}

	.masthead-inner {
		flex-wrap: wrap;
		gap: 0.6rem 0.7rem;
		padding: 0.75rem 1.25rem
	}

	.brand {
		margin-right: auto
	}

	.mast-cta {
		margin-left: 0;
		padding: 9px 14px;
		font-size: 10px
	}

	.mast-nav {
		flex-basis: 100%;
		margin-left: 0;
		order: 99;
		max-height: 0;
		overflow: hidden;
		transition: max-height .3s cubic-bezier(.2, .7, .3, 1)
	}

	.mast-nav.open {
		max-height: 520px
	}

	.nav-links {
		flex-direction: column;
		gap: 0;
		margin-top: 0.4rem;
		background: var(--card);
		border: 1px solid var(--line);
		border-radius: 6px;
		padding: 0.3rem 0;
		box-shadow: var(--shadow)
	}

	.nav-links li {
		border-bottom: 1px solid var(--line-2)
	}

	.nav-links li:last-child {
		border-bottom: none
	}

	.nav-links a {
		display: block;
		padding: 0.85rem 1.1rem;
		border-bottom: none;
		font-size: 13px
	}

	.nav-links a.active {
		background: var(--brass-pale)
	}
}

@media(max-width:640px) {

	.site,
	.footer-inner {
		padding-left: 1.25rem;
		padding-right: 1.25rem
	}

	.topbar-tag {
		display: none
	}

	.topbar-contacts {
		gap: 0.9rem;
		font-size: 11px
	}

	.topbar-hours {
		display: none
	}

	.services-grid,
	.spec-grid,
	.links-grid {
		grid-template-columns: 1fr
	}

	.trust-bar {
		grid-template-columns: 1fr
	}

	.trust-item {
		border-right: none;
		border-bottom: 1px solid var(--line)
	}

	.trust-item:last-child {
		border-bottom: none
	}

	.reviews-divider {
		display: none
	}

	.footer-grid {
		grid-template-columns: 1fr
	}

	.qr-section {
		flex-direction: column;
		text-align: center
	}

	.brand-text {
		font-size: 14px
	}

	.brand-text span {
		font-size: 8.5px;
		letter-spacing: 0.18em
	}

	.wa-float {
		bottom: 1rem;
		right: 1rem;
		width: 48px;
		height: 48px
	}

	.wa-float i {
		font-size: 24px
	}
}

@media(max-width:420px) {
	.mast-cta {
		display: none
	}

	.brand-text span {
		display: none
	}

	.topbar-contacts a[href^="mailto"] {
		display: none
	}

	.topbar-contacts {
		justify-content: center;
		width: 100%
	}

	.hero {
		padding: 2rem 1rem 2rem
	}

	.hero h1 {
		font-size: 32px;
		line-height: 1.05
	}

	.hero-desc {
		font-size: 14px;
		line-height: 1.7
	}

	.hero-photo-frame img {
		max-width: 200px
	}

	.hero-photo-frame {
		padding: 8px
	}

	.hero-actions .btn-gold,
	.hero-actions .btn-outline {
		width: 100%
	}

	.footer-brand-name {
		font-size: 15px
	}

	.footer-contact-row {
		font-size: 12px
	}
}


/* BREADCRUMBS (interior pages) */
.crumbs {
	display: flex;
	gap: 9px;
	align-items: center;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-mute);
	padding: 1.6rem 0 0
}

.crumbs a {
	color: var(--brass)
}

.crumbs a:hover {
	color: var(--pine)
}

.crumb-sep {
	color: var(--line)
}

.crumb-current {
	color: var(--ink-soft)
}