/*
Theme Name: MS Clicks
Theme URI: https://msclicks.com
Template: twentytwentyfive
Author: Pixel Suggest
Author URI: https://pixelsuggest.com
Description: Child theme of Twenty Twenty-Five for an online retail sole proprietorship. Publishes the proprietor's name, photo, phone, email and registered address as selectable text across every page, with matching schema.org structured data — built to satisfy payment-provider and marketplace verification checks.
Version: 1.5
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: msclicks
*/

/* ---------------------------------------------------------------------------
   Tokens
   --------------------------------------------------------------------------- */

:root {
	--paper:  #F1F4F0;
	--card:   #FFFFFF;
	--ink:    #131E1A;
	--teal:   #0E4F4A;
	--amber:  #C98A21;
	--muted:  #64736D;
	--body-c: #333F3A;
	--line:   #D5DCD5;
	--line-2: #E6EBE6;

	--font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

	--shell: 1140px;
	--r: 3px;
}

/* ---------------------------------------------------------------------------
   Base

   Selectors are written as `:root body` rather than `body` so they outrank
   any `:root :where(body)` rules a parent block theme's global styles emit.
   --------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

:root body {
	margin: 0;
	padding: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

:root body h1,
:root body h2,
:root body h3,
:root body h4,
:root body p,
:root body ul,
:root body ol,
:root body dl {
	font-family: var(--font);
}

img { max-width: 100%; height: auto; display: block; }

a {
	color: var(--teal);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}
a:hover { color: var(--amber); }

:focus-visible {
	outline: 2px solid var(--amber);
	outline-offset: 3px;
}

address { font-style: normal; }

.shell {
	width: 100%;
	max-width: var(--shell);
	margin: 0 auto;
	padding: 0 24px;
}

/* Data-style type: same family, tuned for reading numbers and addresses. */
.mono {
	font-size: 0.94em;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.005em;
}

.skip { position: absolute; left: -9999px; }
.skip:focus {
	left: 12px;
	top: 12px;
	z-index: 99;
	background: var(--ink);
	color: var(--paper);
	padding: 10px 16px;
	border-radius: var(--r);
}

.eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 18px;
}

.section__title {
	font-weight: 600;
	font-size: clamp(22px, 3vw, 28px);
	line-height: 1.2;
	letter-spacing: -0.022em;
	margin: 40px 0 14px;
}

/* ---------------------------------------------------------------------------
   Masthead
   --------------------------------------------------------------------------- */

.masthead {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	position: sticky;
	top: 0;
	z-index: 40;
}

.masthead__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 72px;
	flex-wrap: wrap;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--ink);
	margin-right: auto;
}

.brand__mark {
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	border: 2px solid var(--teal);
	border-radius: 50%;
	position: relative;
}
.brand__mark::after {
	content: "";
	position: absolute;
	inset: 5px;
	background: var(--amber);
	border-radius: 50%;
}

.brand__text { display: flex; flex-direction: column; line-height: 1.15; }

.brand__name {
	font-weight: 700;
	font-size: 19px;
	letter-spacing: -0.025em;
}

.brand__sub {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

.nav__list {
	display: flex;
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav__list a {
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
	padding: 6px 0;
	border-bottom: 2px solid transparent;
}
.nav__list a:hover,
.nav__list .current-menu-item a {
	border-bottom-color: var(--amber);
	color: var(--ink);
}

.nav__cta {
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	color: var(--teal);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 8px 14px;
	background: var(--card);
	white-space: nowrap;
}
.nav__cta:hover { border-color: var(--amber); color: var(--ink); }

/* ---------------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------------- */

.hero { padding: 76px 0 64px; }

.hero__inner {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 56px;
	align-items: start;
}

.hero__title {
	font-weight: 700;
	font-size: clamp(34px, 5.2vw, 54px);
	line-height: 1.06;
	letter-spacing: -0.038em;
	margin: 0 0 22px;
}

.hero__title em {
	font-style: normal;
	color: var(--teal);
	box-shadow: inset 0 -0.22em 0 rgba(201, 138, 33, 0.28);
}

.hero__text {
	font-size: 18px;
	color: var(--body-c);
	max-width: 55ch;
	margin: 0 0 30px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
	display: inline-block;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: -0.01em;
	padding: 12px 22px;
	border-radius: var(--r);
	text-decoration: none;
	border: 1px solid transparent;
}

.btn--solid { background: var(--teal); color: #F4F7F4; }
.btn--solid:hover { background: var(--ink); color: #F4F7F4; }

.btn--ghost { border-color: var(--line); color: var(--ink); background: var(--card); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ---------------------------------------------------------------------------
   Business record card  (signature element)
   --------------------------------------------------------------------------- */

.record {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 22px 24px 8px;
	box-shadow: 0 1px 0 var(--line-2), 0 18px 40px -30px rgba(19, 30, 26, 0.55);
}

.record__head {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--ink);
}

.record__kicker {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink);
	margin: 0;
	white-space: nowrap;
}

/* Barcode-style rule — the one decorative flourish, drawn from the
   packing-slip idea the whole card is built on. */
.record__stripes {
	flex: 1;
	height: 20px;
	background-image: repeating-linear-gradient(
		90deg,
		var(--ink) 0 1px,
		transparent 1px 4px,
		var(--ink) 4px 6px,
		transparent 6px 9px,
		var(--ink) 9px 10px,
		transparent 10px 15px
	);
	opacity: 0.5;
}

.record__person {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 0 4px;
}

.record__photo {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var(--line);
	flex: 0 0 72px;
}

.record__name {
	font-weight: 600;
	font-size: 18px;
	letter-spacing: -0.018em;
	margin: 0;
}

.record__role {
	font-size: 14px;
	color: var(--muted);
	margin: 2px 0 0;
}

.record__list { margin: 8px 0 0; }

.record__row {
	display: grid;
	grid-template-columns: 128px 1fr;
	gap: 12px;
	padding: 11px 0;
	border-bottom: 1px solid var(--line-2);
}
.record__row:last-child { border-bottom: 0; }

.record__row dt {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	padding-top: 4px;
}

.record__row dd {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.5;
	font-variant-numeric: tabular-nums;
	overflow-wrap: anywhere;
}

/* ---------------------------------------------------------------------------
   Bands and cards
   --------------------------------------------------------------------------- */

.band { padding: 64px 0; }

.band--tint {
	background: var(--card);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 26px 24px;
}

.band--tint .card { background: var(--paper); }

.card__title {
	font-weight: 600;
	font-size: 19px;
	letter-spacing: -0.022em;
	margin: 0 0 10px;
}

.card p { margin: 0; color: var(--body-c); font-size: 16px; }

/* ---------------------------------------------------------------------------
   Steps

   Each .step is a two-column grid: the number sits in column one, and BOTH
   the heading and the paragraph are pinned to column two. Without the explicit
   grid-column, auto-placement drops the paragraph into the narrow number
   column on the next row and it wraps one word per line.
   --------------------------------------------------------------------------- */

.steps {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 56px;
	align-items: start;
}

.steps__intro .section__title { margin-top: 0; }

.steps__note { color: var(--muted); font-size: 15px; }

.steps__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.step {
	display: grid;
	grid-template-columns: 52px 1fr;
	column-gap: 18px;
	row-gap: 4px;
	padding: 20px 0;
	border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }

.step__num {
	grid-column: 1;
	grid-row: 1;
	font-size: 13px;
	font-weight: 600;
	color: var(--amber);
	letter-spacing: 0.06em;
	font-variant-numeric: tabular-nums;
	padding-top: 3px;
}

.step__title {
	grid-column: 2;
	grid-row: 1;
	font-weight: 600;
	font-size: 17px;
	margin: 0;
	letter-spacing: -0.015em;
}

.step p {
	grid-column: 2;
	grid-row: 2;
	margin: 0;
	color: var(--body-c);
	font-size: 16px;
}

/* ---------------------------------------------------------------------------
   CTA
   --------------------------------------------------------------------------- */

.cta { max-width: 660px; }

.cta__title {
	font-weight: 700;
	font-size: clamp(24px, 3.4vw, 34px);
	letter-spacing: -0.032em;
	line-height: 1.15;
	margin: 0 0 12px;
}

.cta__text { color: var(--body-c); margin: 0 0 18px; }

.cta__row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
	font-size: 15px;
}
.cta__row span { color: var(--line); }

/* ---------------------------------------------------------------------------
   Page head
   --------------------------------------------------------------------------- */

.page-head {
	padding: 66px 0 12px;
	border-bottom: 1px solid var(--line);
}

.page-head__title {
	font-weight: 700;
	font-size: clamp(30px, 4.4vw, 46px);
	line-height: 1.08;
	letter-spacing: -0.038em;
	margin: 0 0 30px;
	max-width: 20ch;
}

.page-head__title em { font-style: normal; color: var(--teal); }

/* ---------------------------------------------------------------------------
   About and Contact layout
   --------------------------------------------------------------------------- */

.about,
.contact {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 56px;
	align-items: start;
}

.about__body > p { color: var(--body-c); }
.about__body > .section__title:first-of-type { margin-top: 0; }

.about__figure {
	float: right;
	margin: 0 0 22px 26px;
	max-width: 220px;
}

.about__figure img {
	border-radius: var(--r);
	border: 1px solid var(--line);
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.about__figure figcaption {
	font-size: 13px;
	line-height: 1.5;
	color: var(--muted);
	margin-top: 10px;
}

.list { padding-left: 20px; margin: 0 0 20px; }
.list li { margin-bottom: 10px; color: var(--body-c); }

.prose { max-width: 70ch; }

/* ---------------------------------------------------------------------------
   Contact
   --------------------------------------------------------------------------- */

.contact__block {
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}
.contact__block:first-child { padding-top: 0; }

.contact__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 8px;
}

.contact__value {
	font-size: 17px;
	margin: 0 0 4px;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.contact__hint,
.contact__note {
	font-size: 15px;
	color: var(--muted);
	margin: 8px 0 0;
	max-width: 52ch;
}

.contact__person {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 24px;
	text-align: center;
	margin-bottom: 20px;
}

.contact__person img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 12px;
	border: 1px solid var(--line);
}

.contact__person-name {
	font-weight: 600;
	font-size: 17px;
	margin: 0;
}

.contact__person-role {
	font-size: 14px;
	color: var(--muted);
	margin: 2px 0 0;
}

/* ---------------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------------- */

.footer {
	background: var(--ink);
	color: #C3CEC8;
	padding: 56px 0 30px;
	margin-top: 8px;
}

.footer a { color: #E4EAE6; }
.footer a:hover { color: var(--amber); }

.footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 34px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__brand {
	font-weight: 700;
	font-size: 22px;
	letter-spacing: -0.025em;
	color: #F1F5F2;
	margin: 0 0 6px;
}

.footer__tag { margin: 0; font-size: 15px; max-width: 34ch; }

.footer__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #7F8F88;
	margin: 0 0 6px;
}

.footer__label--gap { margin-top: 18px; }

.footer__col p,
.footer__col address {
	margin: 0 0 3px;
	font-size: 14px;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.footer__base {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding-top: 22px;
	font-size: 13px;
	color: #7F8F88;
}

.footer__base p { margin: 0; }

.footer__meta {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.footer__credit { color: #7F8F88; }
.footer__credit a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------------- */

@media (max-width: 960px) {
	.hero__inner,
	.steps,
	.about,
	.contact { grid-template-columns: 1fr; gap: 40px; }

	.cards { grid-template-columns: 1fr; }

	.footer__grid { grid-template-columns: 1fr 1fr; }

	.about__figure { float: none; margin: 0 0 24px; max-width: 200px; }
}

@media (max-width: 640px) {
	:root body { font-size: 16px; }

	.hero { padding: 48px 0 40px; }
	.band { padding: 44px 0; }
	.page-head { padding: 44px 0 8px; }

	.masthead__inner {
		min-height: 0;
		padding-top: 14px;
		padding-bottom: 14px;
		gap: 14px;
	}
	.nav__cta { display: none; }
	.nav__list { gap: 18px; }

	.record { padding: 18px 18px 6px; }
	.record__row { grid-template-columns: 1fr; gap: 2px; }
	.record__row dt { padding-top: 0; }

	.footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}
