:root {
	--forest: #2C3B30;
	--sage: #6E8F7C;
	--terracotta: #C97B4E;
	--cream: #F4EFE6;
	--tan: #DDD0BE;
	--ink: #22291F;

	/* darker variants of sage/terracotta used specifically for TEXT on light
	   backgrounds — the base --sage/--terracotta don't reach the 4.5:1 contrast
	   ratio WCAG 2.0 AA (Israeli standard 5568) requires for body text. Keep
	   using the base colors for decorative elements (borders, bullets, icons). */
	--sage-text: #47604F;
	--terracotta-text: #96502C;

	--serif: 'Frank Ruhl Libre', 'Times New Roman', serif;
	--sans: 'Assistant', -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.7;
	overflow-x: hidden;
}

.wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 28px;
}

/* subtle grain overlay for warmth/texture */
.grain {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 999;
	opacity: 0.035;
	mix-blend-mode: multiply;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.skip-link {
	position: absolute;
	right: 16px;
	top: -60px;
	background: var(--forest);
	color: var(--cream);
	padding: 12px 22px;
	border-radius: 0 0 10px 10px;
	font-weight: 600;
	z-index: 1000;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 0;
}

h1, h2, h3 {
	font-family: var(--serif);
	color: var(--forest);
	margin: 0;
	font-weight: 700;
}

/* ---------- header ---------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(244, 239, 230, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 3px solid var(--forest);
	box-shadow: 0 4px 16px rgba(44, 59, 48, 0.12);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 96px;
}

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

.brand-logo {
	height: 72px;
	width: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 0.98rem;
}

.site-nav a {
	position: relative;
	padding: 4px 0;
	color: var(--ink);
}

.site-nav a:not(.nav-cta)::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: var(--terracotta);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.25s ease;
}

.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
	background: var(--forest);
	color: var(--cream) !important;
	padding: 9px 20px;
	border-radius: 999px;
	transition: background 0.2s ease;
}

.nav-cta:hover { background: var(--terracotta-text); }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.nav-toggle span {
	width: 24px;
	height: 2px;
	background: var(--forest);
	border-radius: 2px;
}

/* ---------- hero ---------- */

.hero {
	padding: 90px 0 100px;
	position: relative;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: center;
	gap: 40px;
}

.eyebrow {
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	color: var(--sage-text);
	text-transform: uppercase;
	margin: 0 0 18px;
	font-weight: 600;
}

.hero h1 {
	font-size: clamp(2.6rem, 5vw, 4.2rem);
	line-height: 1.05;
	margin-bottom: 14px;
}

.hero-role {
	font-size: 1.2rem;
	color: var(--terracotta-text);
	font-weight: 600;
	margin: 0 0 22px;
}

.hero-lede {
	font-size: 1.08rem;
	max-width: 46ch;
	color: var(--ink);
	margin: 0 0 34px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	padding: 14px 30px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 1rem;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
	background: var(--forest);
	color: var(--cream);
}

.btn-primary:hover {
	background: var(--terracotta-text);
	transform: translateY(-2px);
}

.btn-ghost {
	border: 1.5px solid var(--forest);
	color: var(--forest);
}

.btn-ghost:hover {
	background: var(--forest);
	color: var(--cream);
	transform: translateY(-2px);
}

.hero-media {
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-blob {
	position: absolute;
	width: 105%;
	height: 105%;
	background: var(--tan);
	border-radius: 42% 58% 63% 37% / 47% 40% 60% 53%;
	z-index: 0;
	animation: blob-morph 12s ease-in-out infinite alternate;
}

@keyframes blob-morph {
	0%   { border-radius: 42% 58% 63% 37% / 47% 40% 60% 53%; }
	50%  { border-radius: 58% 42% 39% 61% / 53% 62% 38% 47%; }
	100% { border-radius: 42% 58% 63% 37% / 47% 40% 60% 53%; }
}

.hero-photo {
	position: relative;
	z-index: 1;
	width: 340px;
	max-width: 80vw;
	aspect-ratio: 3/4;
	object-fit: cover;
	border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
	box-shadow: 0 30px 60px -20px rgba(34, 41, 31, 0.35);
}

/* ---------- sections ---------- */

.section { padding: 90px 0; }

.section-heading {
	display: flex;
	align-items: baseline;
	gap: 18px;
	margin-bottom: 46px;
}

.section-num {
	font-family: var(--serif);
	font-size: 1rem;
	color: var(--terracotta-text);
	font-weight: 700;
	border-bottom: 2px solid var(--terracotta);
	padding-bottom: 2px;
}

.section-heading h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.contact-note {
	margin: 0 0 0 auto;
	color: var(--sage-text);
	font-weight: 600;
	font-size: 0.95rem;
}

/* about */

.about { background: var(--tan); }

.about-grid { display: block; }

.about-body p {
	max-width: 72ch;
	margin: 0 0 20px;
	font-size: 1.05rem;
}

.tag-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 30px 0 0;
}

.tag-list li {
	background: var(--cream);
	color: var(--forest);
	border: 1px solid rgba(44, 59, 48, 0.18);
	padding: 7px 16px;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 600;
}

/* services */

.card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
}

.service-card {
	background: #fff;
	border-radius: 20px;
	padding: 34px;
	border: 1px solid rgba(44, 59, 48, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 6px;
	height: 100%;
	background: var(--sage);
	transition: background 0.25s ease;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px -20px rgba(44, 59, 48, 0.25);
}

.service-card:hover::before { background: var(--terracotta); }

.service-card h3 {
	font-size: 1.3rem;
	margin-bottom: 12px;
}

.service-card p {
	margin: 0;
	color: var(--ink);
	font-size: 0.98rem;
}

/* audiences */

.audiences { background: var(--forest); color: var(--cream); }
.audiences .section-heading h2 { color: var(--cream); }

.audience-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.audience-col h3 {
	color: var(--cream);
	font-size: 1.35rem;
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(244, 239, 230, 0.25);
}

.audience-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.audience-col li {
	position: relative;
	padding-right: 22px;
	font-size: 0.98rem;
	color: rgba(244, 239, 230, 0.92);
}

.audience-col li::before {
	content: '';
	position: absolute;
	right: 0;
	top: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--terracotta);
}

/* approach */

.quote-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.approach blockquote {
	margin: 0;
	font-family: var(--serif);
	font-size: 1.4rem;
	line-height: 1.5;
	color: var(--forest);
	padding-right: 26px;
	border-right: 3px solid var(--terracotta);
}

/* gallery / carousel */

.gallery { background: var(--tan); }

.carousel {
	position: relative;
	max-width: 860px;
	margin: 0 auto;
	border-radius: 20px;
}

.carousel:focus-visible {
	outline: 2px solid var(--terracotta-text);
	outline-offset: 6px;
}

.carousel-viewport {
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 20px 50px -20px rgba(44, 59, 48, 0.3);
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease;
}

.carousel-slide {
	flex: 0 0 100%;
}

.carousel-slide img {
	width: 100%;
	height: 440px;
	object-fit: cover;
	display: block;
}

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: none;
	background: rgba(244, 239, 230, 0.92);
	color: var(--forest);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(44, 59, 48, 0.2);
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 2;
}

.carousel-arrow:hover {
	background: var(--forest);
	color: var(--cream);
}

.carousel-arrow-prev { left: 16px; }
.carousel-arrow-next { right: 16px; }

.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-top: 22px;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: rgba(44, 59, 48, 0.25);
	cursor: pointer;
	transition: all 0.25s ease;
}

.carousel-dot.active {
	background: var(--terracotta-text);
	width: 28px;
	border-radius: 6px;
}

@media (max-width: 640px) {
	.carousel-slide img { height: 260px; }
	.carousel-arrow { width: 38px; height: 38px; font-size: 1.3rem; }
}

/* contact */

.contact-columns {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 40px;
	align-items: start;
}

.contact-card {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(44, 59, 48, 0.08);
}

.contact-form {
	background: #fff;
	border-radius: 24px;
	border: 1px solid rgba(44, 59, 48, 0.08);
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.contact-form label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--sage-text);
}

.contact-form input,
.contact-form textarea {
	font-family: var(--sans);
	font-size: 1rem;
	color: var(--ink);
	background: var(--cream);
	border: 1px solid rgba(44, 59, 48, 0.15);
	border-radius: 12px;
	padding: 12px 16px;
	resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--terracotta-text);
	box-shadow: 0 0 0 3px rgba(150, 80, 44, 0.25);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
	outline: 2px solid var(--terracotta-text);
	outline-offset: 1px;
}

.form-required-note {
	margin: -6px 0 0;
	font-size: 0.82rem;
	color: var(--sage-text);
}

.consent-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.88rem;
	font-weight: 400;
	color: var(--ink);
}

.consent-row input[type="checkbox"] {
	margin-top: 3px;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	accent-color: var(--forest);
}

.consent-row a {
	color: var(--sage-text);
	text-decoration: underline;
	font-weight: 600;
}

.form-submit {
	border: none;
	cursor: pointer;
	align-self: flex-start;
	margin-top: 4px;
}

.form-status {
	margin: 0;
	font-size: 0.9rem;
	min-height: 1.2em;
}

.form-status.is-success { color: var(--sage-text); font-weight: 600; }
.form-status.is-error { color: var(--terracotta-text); font-weight: 600; }

.contact-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 30px;
	border-bottom: 1px solid rgba(44, 59, 48, 0.08);
	transition: background 0.2s ease;
}

.contact-row:last-child { border-bottom: none; }

.contact-row:hover { background: var(--cream); }

.contact-label {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--sage-text);
	font-weight: 600;
	font-size: 0.95rem;
}

.wa-icon { width: 20px; height: 20px; }

.contact-value {
	font-family: var(--serif);
	font-size: 1.15rem;
	color: var(--forest);
	font-weight: 700;
}

/* legal pages (accessibility / privacy) */

.legal-hero {
	padding: 60px 0 20px;
}

.legal-hero h1 {
	font-size: clamp(2rem, 4vw, 2.8rem);
}

.legal-hero .updated-note {
	color: var(--sage-text);
	font-weight: 600;
	margin-top: 14px;
}

.legal-content {
	max-width: 76ch;
	padding: 20px 0 90px;
}

.legal-content h2 {
	font-size: 1.4rem;
	margin-top: 42px;
	margin-bottom: 14px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
	margin: 0 0 16px;
	font-size: 1.02rem;
}

.legal-content ul {
	margin: 0 0 16px;
	padding-right: 22px;
}

.legal-content li {
	margin-bottom: 8px;
	font-size: 1.02rem;
}

.legal-content a {
	color: var(--sage-text);
	text-decoration: underline;
	font-weight: 600;
}

.feedback-intro {
	margin: 14px 0 0;
	color: var(--ink);
	font-size: 1.02rem;
	white-space: nowrap;
}

@media (max-width: 640px) {
	.feedback-intro { white-space: normal; }
}

.feedback-wrap {
	padding: 10px 0 90px;
	max-width: 720px;
}

.feedback-form {
	width: 100%;
}

.back-home {
	display: inline-block;
	margin-bottom: 30px;
	color: var(--sage-text);
	font-weight: 600;
	text-decoration: underline;
}

/* footer */

.site-footer {
	background: var(--ink);
	color: rgba(244, 239, 230, 0.75);
	padding: 30px 0;
	font-size: 0.9rem;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px 24px;
}

.footer-legal {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.footer-legal a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.footer-legal a:hover,
.footer-inner a:hover {
	color: var(--cream);
}

.footer-admin-link {
	text-decoration: none !important;
	opacity: 0.35;
	font-size: 0.95rem;
}

.footer-admin-link:hover {
	opacity: 0.9;
}

/* ---------- reveal animation ---------- */

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.2s; }
.reveal-delay-3.is-visible { transition-delay: 0.3s; }

.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.hero-blob { animation: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 860px) {
	.hero-inner { grid-template-columns: 1fr; }
	.hero-media { order: -1; margin-bottom: 20px; }
	.hero-photo { width: 240px; }
	.card-grid { grid-template-columns: 1fr; }
	.audience-cols { grid-template-columns: 1fr; }
	.quote-grid { grid-template-columns: 1fr; }
	.contact-columns { grid-template-columns: 1fr; }
	.contact-note { margin: 6px 0 0; }
}

@media (max-width: 720px) {
	.header-inner { height: 64px; }
	.brand-logo { height: 44px; }
	.nav-toggle { display: flex; }
	.site-nav {
		position: fixed;
		top: 64px;
		right: 0;
		left: 0;
		background: var(--cream);
		flex-direction: column;
		align-items: flex-start;
		padding: 24px 28px;
		gap: 20px;
		border-bottom: 1px solid rgba(44, 59, 48, 0.1);
		visibility: hidden;
		opacity: 0;
		transform: translateY(-12px);
		transition: transform 0.25s ease, opacity 0.25s ease, visibility 0s linear 0.25s;
	}
	.site-nav.open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
		transition: transform 0.25s ease, opacity 0.25s ease;
	}
	.nav-cta { align-self: flex-start; }
}
