/*!
 * Cheap Shutters — main.css (clean rebuild, v2.0.6)
 * Plain, framework-free CSS. No build step: edit this file directly.
 * Palette/fonts pulled from the compiled output of the previous build
 * so the visual brand carries over; layout system itself is new
 * (flexbox-based columns instead of Foundation's grid-x/cell).
 */

:root {
	--color-brand: #e81759;
	--color-brand-dark: #740c2d;
	--color-brand-darker: #ba1247;
	--color-ink: #111;
	--color-black: #000;
	--color-grey: #6d6e71;
	--color-muted: #5f6368;
	--color-grey-light: #cacaca;
	--color-bg-tint: #f7f3f4;
	--color-bg-tint-2: #f2f2f2;
	--color-border: #e6e6e6;
	--color-white: #fff;

	--color-success: #3adb76;
	--color-warning: #ffae00;
	--color-alert: #cc4b37;

	--font-body: Avenir, "Segoe UI", Helvetica, Arial, sans-serif;

	--container-width: 1200px;
	--radius: 6px;
	--gap: 1.5rem;
}

/* Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-ink);
	line-height: 1.6;
	background: var(--color-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-brand); text-decoration: none; }
a:hover { color: var(--color-brand-dark); }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
p { margin: 0 0 1em; font-size: inherit; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-body);
	color: var(--color-ink);
	line-height: 1.2;
	margin: 0 0 0.6em;
	font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.375rem; }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 10000;
	background: var(--color-black); color: var(--color-white); padding: 0.75em 1.25em;
}
.skip-link:focus { left: 0; }

/* Layout ------------------------------------------------------------ */
.container {
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.grid-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.col { flex: 1 1 0; min-width: 0; }
.col--4  { flex: 0 1 calc(33.333% - var(--gap)); }
.col--6  { flex: 0 1 calc(50% - var(--gap)/2); }
.col--8  { flex: 0 1 calc(66.666% - var(--gap)); }
.col--12 { flex: 0 1 100%; }
@media (max-width: 780px) {
	.col--4, .col--6, .col--8 { flex: 0 1 100%; }
}

.page-layout { display: flex; gap: calc(var(--gap) * 2); padding: 2.5rem 1.25rem; }
.page-layout__content { flex: 1 1 0; min-width: 0; }
.page-layout--with-sidebar .page-layout__sidebar { flex: 0 0 340px; max-width: 340px; }
@media (max-width: 900px) {
	.page-layout { flex-direction: column; padding: 1.75rem 1.25rem; }
	.page-layout--with-sidebar .page-layout__sidebar { flex: 1 1 auto; max-width: none; }
}

/* Header / nav ------------------------------------------------------- */
.site-header {
	border-bottom: 1px solid var(--color-border);
	position: sticky; top: 0; background: var(--color-white); z-index: 100;
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 1.5rem; padding: 0.85rem 1.25rem;
}
.site-logo { display: inline-flex; align-items: center; }
.site-logo img { max-height: 48px; }
.site-name { font-weight: 800; font-size: 1.25rem; color: var(--color-ink); }

.site-nav--desktop { display: none; }
@media (min-width: 960px) { .site-nav--desktop { display: block; } }
.site-nav--desktop .menu,
.menu--fallback {
	display: flex; align-items: center; gap: 1.75rem;
	list-style: none; margin: 0; padding: 0;
}
.site-nav--desktop .menu > li { position: relative; }
.site-nav--desktop .menu > li > a {
	color: var(--color-ink); font-weight: 600;
}
.site-nav--desktop .menu .has-dropdown > .submenu {
	display: none; position: absolute; top: 100%; left: 0;
	background: var(--color-white); border: 1px solid var(--color-border);
	border-radius: var(--radius); min-width: 220px; padding: 0.5rem 0;
	list-style: none; margin: 0; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.site-nav--desktop .menu .has-dropdown:hover > .submenu,
.site-nav--desktop .menu .has-dropdown:focus-within > .submenu {
	display: block;
}
.site-nav--desktop .submenu li a { display: block; padding: 0.5rem 1rem; }

.site-header__actions { display: flex; align-items: center; gap: 0.75rem; }
.site-header__phone { display: none; }
@media (min-width: 1100px) { .site-header__phone { display: inline-flex; } }

.menu-toggle {
	display: inline-flex; flex-direction: column; gap: 4px;
	background: none; border: 0; padding: 0.5rem; cursor: pointer;
}
@media (min-width: 960px) { .menu-toggle { display: none; } }
.menu-toggle__bar { width: 22px; height: 2px; background: var(--color-ink); display: block; }

.mobile-menu {
	position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw);
	background: var(--color-white); transform: translateX(100%);
	transition: transform 0.25s ease; z-index: 200; padding: 1.5rem;
	overflow-y: auto; box-shadow: -8px 0 24px rgba(0,0,0,0.12);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a, .mobile-menu summary {
	display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--color-border);
	color: var(--color-ink); font-weight: 600; cursor: pointer;
}
.mobile-menu .submenu-panel { padding-left: 1rem; }
@media (min-width: 960px) { .mobile-menu { display: none; } }

/* Buttons ------------------------------------------------------------ */
.button {
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--color-brand); color: var(--color-white);
	padding: 0.7em 1.4em; border-radius: var(--radius); font-weight: 700;
	border: 2px solid var(--color-brand); white-space: nowrap;
}
.button:hover { background: var(--color-brand-dark); border-color: var(--color-brand-dark); color: var(--color-white); }
.button--outline { background: transparent; color: var(--color-brand); }
.button--outline:hover { background: var(--color-brand); color: var(--color-white); }

/* Hero ----------------------------------------------------------------*/
.page-hero {
	background: var(--color-bg-tint);
	padding: clamp(3rem, 7vw, 6rem) 0;
	margin-bottom: 2rem;
	position: relative;
	background-size: cover;
	background-position: center;
}
.page-hero--image { color: var(--color-white); min-height: clamp(360px, 56vw, 620px); display: flex; align-items: center; }
.page-hero--image::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.68), rgba(0,0,0,0.18));
}
.page-hero__content { position: relative; max-width: 720px; }
.page-hero__title { margin: 0; }
.page-hero--image .page-hero__title, .page-hero--image .page-hero__intro { color: var(--color-white); }
.page-hero__intro { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 620px; margin-top: 1rem; }
.page-hero__intro p:last-child { margin-bottom: 0; }

.hero {
	background-size: cover; background-position: center;
	color: var(--color-white); padding: clamp(4rem, 8vw, 7rem) 0; margin-bottom: 2rem;
	position: relative; min-height: clamp(380px, 56vw, 660px); display: flex; align-items: center;
}
.hero::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.65), rgba(0,0,0,0.15));
}
.hero__inner { position: relative; max-width: 640px; }
.hero__inner h1, .hero__inner h2, .hero__inner p { color: var(--color-white); }


/* Homepage hero -------------------------------------------------------*/
.home-hero {
	position: relative;
	isolation: isolate;
	min-height: clamp(520px, 62vw, 760px);
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--color-brand-dark), var(--color-brand));
	background-size: cover;
	background-position: center;
	margin-bottom: 2.75rem;
	overflow: hidden;
}
.home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.42) 42%, rgba(0,0,0,0.08) 100%),
		linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.3));
}
.home-hero::after {
	content: "";
	position: absolute;
	inset: auto -10% -32% 42%;
	height: 52%;
	z-index: -1;
	background: radial-gradient(circle at center, rgba(232,23,89,0.38), rgba(232,23,89,0));
}
.home-hero__container { width: 100%; }
.home-hero__panel {
	max-width: 690px;
	padding: clamp(2rem, 4vw, 3.25rem);
	background: rgba(255,255,255,0.92);
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(0,0,0,0.24);
	border: 1px solid rgba(255,255,255,0.55);
	backdrop-filter: blur(8px);
}
.home-hero__eyebrow {
	margin: 0 0 0.8rem;
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--color-brand);
}
.home-hero__title {
	margin: 0;
	font-size: clamp(2.45rem, 5vw, 4.6rem);
	line-height: 0.98;
	letter-spacing: -0.045em;
	color: var(--color-ink);
}
.home-hero__intro {
	max-width: 560px;
	margin: 1.25rem 0 0;
	font-size: clamp(1.05rem, 1.7vw, 1.28rem);
	line-height: 1.55;
	color: var(--color-muted);
}
.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.75rem;
}
.home-hero__button { min-height: 50px; }
.home-hero__button--secondary {
	background: var(--color-white);
}
.home-hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	list-style: none;
	margin: 1.75rem 0 0;
	padding: 0;
}
.home-hero__features li {
	position: relative;
	padding: 0.55rem 0.8rem 0.55rem 1.9rem;
	border-radius: 999px;
	background: var(--color-bg-tint);
	color: var(--color-ink);
	font-size: 0.92rem;
	font-weight: 700;
}
.home-hero__features li::before {
	content: "✓";
	position: absolute;
	left: 0.75rem;
	color: var(--color-brand);
	font-weight: 900;
}
@media (max-width: 780px) {
	.home-hero {
		min-height: auto;
		padding: 2.5rem 0;
		background-position: center;
	}
	.home-hero::before {
		background: linear-gradient(180deg, rgba(0,0,0,0.54), rgba(0,0,0,0.28));
	}
	.home-hero__panel {
		padding: 1.6rem;
		border-radius: 14px;
	}
	.home-hero__actions .button {
		width: 100%;
	}
}

/* Cards / sections ----------------------------------------------------*/
.section-eyebrow {
	margin: 0 0 0.55rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-brand);
}
.section-heading { margin: 0 0 1.25rem; }
.section-heading--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
}
.section-heading--split h2 { margin-bottom: 0; }
.section-heading__link { font-weight: 800; white-space: nowrap; }

.card {
	border: 1px solid rgba(17,17,17,0.08);
	border-radius: 18px;
	overflow: hidden;
	background: var(--color-white);
	height: 100%;
	box-shadow: 0 12px 34px rgba(17,17,17,0.07);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 46px rgba(17,17,17,0.12);
	border-color: rgba(232,23,89,0.2);
}
.card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}
.card__link:hover { color: inherit; }
.card__section { padding: 1.35rem; }
.card--post .card__section { display: flex; flex-direction: column; height: 100%; }
.card__excerpt { color: var(--color-muted); font-size: 0.95rem; line-height: 1.55; }
.card__excerpt p { margin: 0 0 1rem; }
.card__pill {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	margin-bottom: 0.85rem;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: var(--color-bg-tint);
	color: var(--color-brand);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
}
.card__pill--muted { color: var(--color-grey); background: var(--color-bg-tint-2); }
.card--cta, .card--callout {
	background-size: cover; background-position: center; color: var(--color-white);
	background-image: var(--bg-image);
}
.card--callout { background-image: linear-gradient(90deg, rgba(0,0,0,0.75), rgba(0,0,0,0.1)), var(--bg-image); }
.card--cta .card__section, .card--callout .card__section { min-height: 220px; display: flex; align-items: center; }
.card--cta h2, .card--cta h3, .card--callout h2, .card--callout h3 { color: var(--color-white); }

.card--post .card__media { position: relative; overflow: hidden; background: var(--color-bg-tint-2); }
.card--post .card__media img { aspect-ratio: 16/10; object-fit: cover; width: 100%; transition: transform 0.35s ease; }
.card:hover .card__media img { transform: scale(1.04); }
.card__media--placeholder {
	aspect-ratio: 16/10;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(135deg, rgba(232,23,89,0.12), rgba(116,12,45,0.1)),
		var(--color-bg-tint);
}
.card__media--placeholder span {
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(232,23,89,0.72);
}
.card--post .card__title { font-size: 1.15rem; margin-bottom: 0.65rem; }
.card--post .card__cta { color: var(--color-brand); font-weight: 800; margin-top: auto; }
.card-grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: var(--gap); margin: 1.5rem 0;
}
.card-grid .card { min-height: 100%; }

.image-text-block__content, .text-block { padding: 0.5rem 0; }

.grid { display: grid; gap: var(--gap); grid-template-columns: repeat(2, 1fr); }
.grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid--cols-6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 780px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .grid { grid-template-columns: 1fr; } }
.grid__cell.card .grid__content { padding: 1.25rem; }
.grid-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--color-bg-tint-2); margin: 0 auto 0.75rem; }

.page-sections { padding: 1rem 0 2rem; }


/* Shutter CPT ---------------------------------------------------------*/
.archive-hero {
	position: relative;
	padding: clamp(3.4rem, 7vw, 6rem) 0;
	margin-bottom: 0.5rem;
	background:
		radial-gradient(circle at 82% 24%, rgba(232,23,89,0.15), rgba(232,23,89,0) 30%),
		linear-gradient(135deg, var(--color-bg-tint), var(--color-white));
	border-bottom: 1px solid var(--color-border);
}
.archive-hero__inner { max-width: 760px; }
.archive-hero h1 { margin-bottom: 0.45em; letter-spacing: -0.035em; }
.archive-hero p { color: var(--color-muted); font-size: clamp(1.05rem, 1.8vw, 1.24rem); max-width: 680px; }
.archive-hero__description p { margin-bottom: 0; }
.archive-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.5rem;
}
.archive-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.5rem;
	padding: 1rem 1.2rem;
	border: 1px solid var(--color-border);
	border-radius: 16px;
	background: var(--color-white);
	box-shadow: 0 10px 24px rgba(17,17,17,0.04);
}
.archive-toolbar p { margin: 0; color: var(--color-muted); font-weight: 700; }

.shutter-hero {
	position: relative;
	padding: clamp(2.5rem, 6vw, 5.25rem) 0;
	background:
		radial-gradient(circle at 10% 15%, rgba(232,23,89,0.15), rgba(232,23,89,0) 28%),
		linear-gradient(135deg, #fff, var(--color-bg-tint));
	border-bottom: 1px solid var(--color-border);
	overflow: hidden;
}
.shutter-hero::after {
	content: "";
	position: absolute;
	right: -8%;
	bottom: -28%;
	width: 46%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(232,23,89,0.08);
	pointer-events: none;
}
.shutter-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 48%);
	align-items: center;
	gap: clamp(2rem, 5vw, 4.5rem);
	z-index: 1;
}
.shutter-hero__copy { max-width: 680px; }
.shutter-hero__eyebrow {
	margin: 0 0 0.8rem;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--color-brand);
}
.shutter-hero__title {
	font-size: clamp(2.35rem, 5vw, 4.35rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
	margin-bottom: 1rem;
}
.shutter-hero__intro {
	font-size: clamp(1.05rem, 1.7vw, 1.25rem);
	line-height: 1.65;
	color: var(--color-muted);
	max-width: 620px;
}
.shutter-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 0 0 1rem;
}
.shutter-tag {
	display: inline-flex;
	align-items: center;
	padding: 0.38rem 0.72rem;
	border-radius: 999px;
	background: var(--color-white);
	border: 1px solid rgba(232,23,89,0.18);
	color: var(--color-brand);
	font-size: 0.82rem;
	font-weight: 800;
}
.shutter-tag:hover { background: var(--color-brand); color: var(--color-white); border-color: var(--color-brand); }
.shutter-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.4rem;
}
.shutter-hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	list-style: none;
	padding: 0;
	margin: 1.45rem 0 0;
}
.shutter-hero__features li {
	position: relative;
	padding: 0.52rem 0.78rem 0.52rem 1.75rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.78);
	box-shadow: 0 7px 20px rgba(17,17,17,0.05);
	font-size: 0.9rem;
	font-weight: 800;
}
.shutter-hero__features li::before {
	content: "✓";
	position: absolute;
	left: 0.68rem;
	color: var(--color-brand);
}
.shutter-hero__media {
	position: relative;
	margin: 0;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 28px 70px rgba(17,17,17,0.18);
	border: 8px solid var(--color-white);
	background: var(--color-bg-tint-2);
}
.shutter-hero__media img {
	width: 100%;
	aspect-ratio: 5/4;
	object-fit: cover;
}
.page-layout--shutter,
.page-layout--shutter-archive { padding-top: 2rem; }
.page-layout--shutter .page-layout__sidebar {
	position: sticky;
	top: 96px;
	align-self: flex-start;
}
.shutter-article {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 20px;
	padding: clamp(1.5rem, 3vw, 2.3rem);
	box-shadow: 0 14px 38px rgba(17,17,17,0.05);
}
.shutter-article__content > :first-child { margin-top: 0; }
.shutter-article__content > :last-child { margin-bottom: 0; }
.shutter-related { margin-top: 2.5rem; }
@media (max-width: 900px) {
	.shutter-hero__grid { grid-template-columns: 1fr; }
	.shutter-hero__media { order: -1; max-width: 720px; }
	.page-layout--shutter .page-layout__sidebar { position: static; }
	.section-heading--split { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
	.archive-hero__actions .button,
	.shutter-hero__actions .button { width: 100%; }
	.shutter-article { border-radius: 16px; padding: 1.25rem; }
}

.cta-block {
	background: var(--color-bg-tint); border-radius: var(--radius);
	padding: 2.5rem; text-align: center; margin: 2rem 0;
}
.cta-block .button { margin: 0.25rem; }

/* Editor-only notice --------------------------------------------------*/
.callout {
	border-left: 4px solid var(--color-grey-light); background: var(--color-bg-tint-2);
	padding: 1rem 1.25rem; border-radius: 4px; margin-bottom: 1.5rem; font-size: 0.9rem;
}
.callout--warning { border-color: var(--color-warning); }
.cheapshutters-mode-notice { border-color: var(--color-brand); color: var(--color-grey); }

/* Forms ---------------------------------------------------------------*/
input, textarea, select {
	font-family: inherit; font-size: 1rem; padding: 0.65em 0.85em;
	border: 1px solid var(--color-grey-light); border-radius: var(--radius);
	width: 100%; margin-bottom: 1em;
}
.search-form { display: flex; gap: 0.5rem; max-width: 420px; }
.search-form input { margin-bottom: 0; }

/* Sidebar widgets -----------------------------------------------------*/
.page-layout__sidebar .widget { margin-bottom: 1.75rem; }
.page-layout__sidebar .widget-title { font-size: 1.15rem; margin-bottom: 0.85rem; }

/* Ninja Forms ---------------------------------------------------------*/
.nf-form-fields-required { display: none !important; }
.nf-before-form-content { margin: 0; }
.nf-form-cont .nf-field-container { margin-bottom: 1rem; }
.nf-form-cont .nf-field-label { margin-bottom: 0.35rem; }
.nf-form-cont .nf-field-label label { font-weight: 700; }
.nf-form-cont .ninja-forms-req-symbol { color: var(--color-brand); }
.nf-form-cont .nf-field-element input,
.nf-form-cont .nf-field-element textarea,
.nf-form-cont .nf-field-element select { width: 100%; margin-bottom: 0; }
.nf-form-cont .nf-field-element textarea { min-height: 120px; }
.nf-form-cont input[type="button"],
.nf-form-cont input[type="submit"] {
	width: auto; display: inline-flex; align-items: center; justify-content: center;
	background: var(--color-brand); color: var(--color-white); border: 2px solid var(--color-brand);
	border-radius: var(--radius); padding: 0.7em 1.4em; font-weight: 700; cursor: pointer;
}
.nf-form-cont input[type="button"]:hover,
.nf-form-cont input[type="submit"]:hover { background: var(--color-brand-dark); border-color: var(--color-brand-dark); }
.page-layout__sidebar .nf-multi-cell .nf-cell,
.page-layout__sidebar .nf-cell { float: none !important; width: 100% !important; display: block; padding: 0 !important; margin: 0 !important; }
.page-layout__sidebar .nf-row { display: block; margin: 0; }
.page-layout__sidebar .nf-form-cont input[type="button"],
.page-layout__sidebar .nf-form-cont input[type="submit"] { width: 100%; }

/* Footer ----------------------------------------------------------------*/
.site-footer { background: var(--color-ink); color: var(--color-white); padding: 3rem 0 1.5rem; margin-top: 3rem; }
.site-footer a { color: var(--color-white); }
.site-footer__columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.site-footer .widget-title { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-phone { color: var(--color-white); font-weight: 700; }
.site-footer__copyright { color: var(--color-grey-light); font-size: 0.85rem; margin: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; }

/* Comments --------------------------------------------------------------*/
.comments-area { margin-top: 2.5rem; border-top: 1px solid var(--color-border); padding-top: 2rem; }
.comment-list { list-style: none; padding: 0; }
.comment-list li { margin-bottom: 1.5rem; }
