/* ------------------------------------------------------------------ */
/* Reset di base                                                       */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ------------------------------------------------------------------ */
/* Design tokens                                                       */
/* ------------------------------------------------------------------ */
:root{
	--bg: #f3efe3;
	--bg-alt: #eae3d2;
	--bg-card: #fbf9f3;
	--ink: #1c1a16;
	--ink-muted: #6f6a5c;
	--border: rgba(28,26,22,.12);

	--terracotta: #bd5b34;
	--terracotta-soft: rgba(189,91,52,.14);
	--forest: #3e4a34;
	--forest-soft: rgba(62,74,52,.14);

	--dark: #1c1a16;
	--dark-ink: #f3efe3;

	--radius-lg: 22px;
	--radius-md: 14px;
	--radius-pill: 999px;

	--shadow-card: 0 14px 34px rgba(28,26,22,.08);
	--shadow-lift: 0 22px 50px rgba(28,26,22,.14);

	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-serif: 'Playfair Display', serif;

	--container: 1120px;
}

body{
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-sans);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

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

.accent{
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	color: var(--terracotta);
}

.eyebrow{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--terracotta);
	margin-bottom: 14px;
}

.eyebrow::before{
	content: '';
	width: 18px;
	height: 1px;
	background: var(--terracotta);
}

.section{
	padding: 96px 0;
}

.section--alt{
	background: var(--bg-alt);
}

.section--dark{
	background: var(--dark);
	color: var(--dark-ink);
}

.section--dark .eyebrow{ color: #d98a63; }
.section--dark .eyebrow::before{ background: #d98a63; }

.section-head{
	max-width: 640px;
	margin-bottom: 48px;
}

.section-head h2{
	font-family: var(--font-serif);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	line-height: 1.2;
}

.section-head p{
	margin-top: 14px;
	color: var(--ink-muted);
	font-size: 16px;
	line-height: 1.7;
}

.section--dark .section-head p{ color: rgba(243,239,227,.7); }

/* ------------------------------------------------------------------ */
/* Bottoni                                                              */
/* ------------------------------------------------------------------ */
.btn{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--radius-pill);
	font-size: 14px;
	font-weight: 600;
	border: 1px solid transparent;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn--dark{
	background: var(--ink);
	color: var(--bg);
}

.btn--dark:hover{
	transform: translateY(-2px);
	box-shadow: var(--shadow-lift);
}

.btn--outline{
	background: transparent;
	border-color: var(--border);
	color: var(--ink);
}

.btn--outline:hover{
	border-color: var(--ink);
	transform: translateY(-2px);
}

.btn--sm{ padding: 10px 20px; font-size: 13px; }

.icon{ width: 18px; height: 18px; flex-shrink: 0; }

/* ------------------------------------------------------------------ */
/* Navigazione                                                         */
/* ------------------------------------------------------------------ */
.site-nav{
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(243,239,227,.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
}

.site-nav__inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
}

.site-nav__logo{
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 18px;
}

.site-nav__links{
	display: flex;
	align-items: center;
	gap: 26px;
	font-size: 14px;
	font-weight: 500;
}

.site-nav__links a:hover{ color: var(--terracotta); }

.site-nav__toggle{
	display: none;
	background: none;
	border: none;
	color: var(--ink);
	padding: 6px;
}

.site-nav__toggle .icon{ width: 24px; height: 24px; }

/* ------------------------------------------------------------------ */
/* Hero                                                                 */
/* ------------------------------------------------------------------ */
.hero{
	padding: 64px 0 96px;
}

.hero__grid{
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 56px;
	align-items: start;
}

.hero h1{
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(34px, 5.2vw, 58px);
	line-height: 1.14;
}

.hero p.lead{
	margin-top: 22px;
	font-size: 17px;
	line-height: 1.75;
	color: var(--ink-muted);
	max-width: 46ch;
}

.hero__actions{
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.hero__photo{
	position: relative;
}

.hero__photo-frame{
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-card);
	aspect-ratio: 4 / 5;
}

.hero__photo-frame img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__caption{
	position: absolute;
	left: 20px;
	bottom: -20px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	padding: 12px 18px;
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero__caption .icon{ width: 15px; height: 15px; color: var(--terracotta); }

/* ------------------------------------------------------------------ */
/* Discipline                                                           */
/* ------------------------------------------------------------------ */
.discipline-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.discipline-card{
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 26px 24px;
	box-shadow: var(--shadow-card);
	transition: transform .25s ease, box-shadow .25s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.discipline-card:hover{
	transform: translateY(-6px);
	box-shadow: var(--shadow-lift);
}

.discipline-card.is-focus{
	border-color: var(--terracotta);
	box-shadow: var(--shadow-lift);
}

.discipline-card__icon{
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.discipline-card__icon.is-terracotta{ background: var(--terracotta-soft); color: var(--terracotta); }
.discipline-card__icon.is-forest{ background: var(--forest-soft); color: var(--forest); }
.discipline-card__icon .icon{ width: 21px; height: 21px; }

.discipline-card h3{
	font-family: var(--font-serif);
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 8px;
}

.discipline-card p{
	color: var(--ink-muted);
	font-size: 14px;
	line-height: 1.6;
	flex-grow: 1;
}

.discipline-card__link{
	margin-top: 16px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
}

.discipline-card__link .icon{ width: 14px; height: 14px; transition: transform .2s ease; }
.discipline-card:hover .discipline-card__link .icon{ transform: translateX(4px); }

/* ------------------------------------------------------------------ */
/* Principi (sezione scura)                                            */
/* ------------------------------------------------------------------ */
.principles-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.principle__number{
	font-family: var(--font-serif);
	font-size: 15px;
	font-weight: 700;
	color: var(--terracotta);
	margin-bottom: 16px;
}

.principle h3{
	font-family: var(--font-serif);
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 10px;
}

.principle p{
	color: rgba(243,239,227,.68);
	font-size: 14.5px;
	line-height: 1.7;
}

/* ------------------------------------------------------------------ */
/* Timeline / percorso                                                  */
/* ------------------------------------------------------------------ */
.timeline{
	position: relative;
	max-width: 760px;
}

.timeline::before{
	content: '';
	position: absolute;
	top: 6px;
	bottom: 6px;
	left: 19px;
	width: 2px;
	background: var(--border);
}

.timeline-item{
	position: relative;
	padding-left: 56px;
	margin-bottom: 22px;
}

.timeline-item:last-child{ margin-bottom: 0; }

.timeline-item__dot{
	position: absolute;
	left: 0;
	top: 4px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: var(--ink-muted);
}

.timeline-item__logo{ width: 26px; height: 26px; object-fit: contain; }

.timeline-item.is-current .timeline-item__dot{
	background: #fff;
	border-color: var(--terracotta);
	color: var(--terracotta);
}

.timeline-item__dot .icon{ width: 17px; height: 17px; }

.timeline-item__card{
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 18px 20px;
}

.timeline-item__head{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.timeline-item__head h3{
	font-family: var(--font-serif);
	font-size: 16.5px;
	font-weight: 700;
}

.badge-current{
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: var(--terracotta);
	background: var(--terracotta-soft);
	padding: 3px 9px;
	border-radius: var(--radius-pill);
}

.timeline-item__role{
	font-size: 13.5px;
	color: var(--ink-muted);
	margin-top: 2px;
}

.timeline-item__meta{
	margin-top: 8px;
	font-size: 12.5px;
	color: var(--ink-muted);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 14px;
}

.timeline-item__meta span{
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.timeline-item__desc{
	margin-top: 10px;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--ink-muted);
}

.timeline-item__link{
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 10px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--terracotta);
}

/* ------------------------------------------------------------------ */
/* Hero: testo multi-paragrafo (pagine materiale)                       */
/* ------------------------------------------------------------------ */
.hero__copy p{
	margin-top: 16px;
	font-size: 17px;
	line-height: 1.75;
	color: var(--ink-muted);
	max-width: 56ch;
}

.hero__copy p:first-child{ margin-top: 22px; }

/* ------------------------------------------------------------------ */
/* Home: claim + manifesto                                             */
/* ------------------------------------------------------------------ */
.home-hero{
	padding: 88px 0 0;
	text-align: center;
}

.home-hero .eyebrow{ justify-content: center; }

.home-hero h1{
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(48px, 9vw, 96px);
	line-height: 1;
}

.home-hero__sub{
	margin: 22px auto 0;
	font-size: 18px;
	line-height: 1.6;
	color: var(--ink-muted);
	max-width: 42ch;
}

.manifesto{
	max-width: 640px;
	margin: 0 auto;
	padding: 0 0 24px;
}

.manifesto p{
	font-size: 17px;
	line-height: 1.85;
	color: var(--ink-muted);
	margin-top: 20px;
}

.manifesto a{ color: var(--terracotta); font-weight: 600; }
.manifesto a:hover{ text-decoration: underline; }

.manifesto p:first-child{ margin-top: 0; }

/* ------------------------------------------------------------------ */
/* Dettagli pratici (fondo pagina materiale)                            */
/* ------------------------------------------------------------------ */
.practical{
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 30px 32px;
	margin-top: 44px;
	max-width: 560px;
}

.practical dt{
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--ink-muted);
	margin-top: 18px;
}

.practical dt:first-child{ margin-top: 0; }

.practical dd{
	margin: 4px 0 0;
	font-size: 15px;
	line-height: 1.6;
}

.practical dd a{ color: var(--terracotta); font-weight: 600; }

.practical__note{
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--border);
	font-size: 12.5px;
	color: var(--ink-muted);
	font-style: italic;
}

.practical__note p + p{ margin-top: 6px; }

/* ------------------------------------------------------------------ */
/* Richiamo al gesto (chiusura pagina)                                  */
/* ------------------------------------------------------------------ */
.gesture-line{
	text-align: center;
	font-family: var(--font-serif);
	font-style: italic;
	color: var(--ink-muted);
	font-size: 16px;
	padding: 8px 0 0;
}

.section--dark .gesture-line{ color: var(--dark-ink); font-size: 20px; }

/* ------------------------------------------------------------------ */
/* Taccuino                                                             */
/* ------------------------------------------------------------------ */
.notebook-list{ max-width: 700px; }

.notebook-item{
	padding: 28px 0;
	border-bottom: 1px solid var(--border);
}

.notebook-item:first-child{ padding-top: 0; }

.notebook-item__date{
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: var(--terracotta);
}

.notebook-item h2{
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 700;
	margin-top: 8px;
}

.notebook-item p{
	margin-top: 8px;
	color: var(--ink-muted);
	line-height: 1.7;
	font-size: 15px;
}

.tag-list{
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 12px;
}

.tag-pill{
	font-size: 11px;
	font-weight: 600;
	text-transform: lowercase;
	background: var(--bg-alt);
	border-radius: var(--radius-pill);
	padding: 4px 12px;
	color: var(--ink-muted);
}

.subscribe-form{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	max-width: 480px;
}

.subscribe-form input[type="email"]{
	flex: 1;
	padding: 13px 18px;
	border-radius: var(--radius-pill);
	border: 1px solid var(--border);
	background: var(--bg-card);
	font: inherit;
	font-size: 14px;
	color: var(--ink);
}

.subscribe-form input[type="email"]:focus{ outline: 2px solid var(--terracotta); outline-offset: 1px; }

.subscribe-note{
	margin-top: 12px;
	font-size: 12.5px;
	color: var(--ink-muted);
}

.subscribe-success{
	margin-top: 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--forest);
}

/* ------------------------------------------------------------------ */
/* Galleria "Dalla bottega" (pagina Legno)                              */
/* ------------------------------------------------------------------ */
.gallery-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.gallery-item__photo{
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 100%;
	font: inherit;
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	background: none;
	cursor: zoom-in;
}

.gallery-item__photo:focus-visible{ outline: 2px solid var(--terracotta); outline-offset: 2px; }

.gallery-item__photo.is-venduto img{ filter: saturate(.6); }

.gallery-item__badge{
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
	color: var(--ink-muted);
	background: rgba(243,239,227,.92);
	padding: 4px 10px;
	border-radius: var(--radius-pill);
}

.gallery-item__badge--venduto{ color: var(--terracotta); }

.gallery-item__photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: filter .2s ease;
}

.gallery-item:hover .gallery-item__photo img{ filter: brightness(.92); }

.gallery-item figcaption{
	margin-top: 10px;
	font-size: 13px;
	color: var(--ink-muted);
}

.gallery-lightbox{
	border: none;
	padding: 0;
	background: none;
	overflow: visible;
	max-width: 90vw;
}

.gallery-lightbox::backdrop{
	background: rgba(28,26,22,.82);
}

.gallery-lightbox__inner{
	position: relative;
}

.gallery-lightbox__img{
	display: block;
	max-width: 90vw;
	max-height: 85vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius-md);
	background: var(--bg-card);
}

.gallery-lightbox__close{
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(28,26,22,.65);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.gallery-cta{
	margin-top: 36px;
	font-size: 14.5px;
	color: var(--ink-muted);
}

.gallery-cta a{ color: var(--terracotta); font-weight: 600; }

@media (max-width: 560px){
	.gallery-grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ------------------------------------------------------------------ */
/* Contatti                                                             */
/* ------------------------------------------------------------------ */
.contact__layout{
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 48px;
	align-items: start;
}

.contact__actions{
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.channel-list{
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 8px;
}

.channel-item{
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px;
	border-radius: var(--radius-md);
	font-size: 14px;
	font-weight: 600;
}

.channel-item:hover{ background: var(--bg-alt); }

.channel-item__icon{
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--terracotta-soft);
	color: var(--terracotta);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.channel-item__icon .icon{ width: 17px; height: 17px; }
.channel-item small{ display: block; font-weight: 400; color: var(--ink-muted); margin-top: 2px; }

/* ------------------------------------------------------------------ */
/* Footer                                                               */
/* ------------------------------------------------------------------ */
.site-footer{
	background: var(--bg-alt);
	border-top: 1px solid var(--border);
	padding-top: 56px;
}

.site-footer__inner{
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 40px;
}

.site-footer__name{
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 18px;
}

.site-footer__tagline{
	margin-top: 10px;
	font-size: 13.5px;
	color: var(--ink-muted);
	max-width: 34ch;
	line-height: 1.6;
}

.site-footer__heading{
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ink-muted);
	margin-bottom: 14px;
}

.site-footer__col ul li{ margin-bottom: 10px; font-size: 14px; }
.site-footer__col ul li a:hover{ color: var(--terracotta); }

.site-footer__bottom{
	display: flex;
	justify-content: space-between;
	padding: 20px 24px;
	border-top: 1px solid var(--border);
	font-size: 12.5px;
	color: var(--ink-muted);
}

/* ------------------------------------------------------------------ */
/* Blog: lista disciplina + articolo singolo                            */
/* ------------------------------------------------------------------ */
.page-hero{
	padding: 56px 0 40px;
	border-bottom: 1px solid var(--border);
}

.page-hero h1{
	font-family: var(--font-serif);
	font-size: clamp(28px, 4.5vw, 42px);
	font-weight: 700;
}

.page-hero p{
	margin-top: 14px;
	color: var(--ink-muted);
	max-width: 60ch;
	line-height: 1.7;
}

.breadcrumb{
	font-size: 13px;
	color: var(--ink-muted);
	margin-bottom: 18px;
}

.breadcrumb a:hover{ color: var(--terracotta); }

.article-card__date{
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: var(--terracotta);
}

.empty-state{
	background: var(--bg-card);
	border: 1px dashed var(--border);
	border-radius: var(--radius-lg);
	padding: 48px;
	text-align: center;
	color: var(--ink-muted);
}

.article-single{
	max-width: 720px;
	margin: 0 auto;
}

.article-single__cover{
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	margin: 28px 0 40px;
	aspect-ratio: 16/9;
}

.article-single__cover img{ width: 100%; height: 100%; object-fit: cover; }

.article-single__content{
	font-size: 17px;
	line-height: 1.85;
	color: var(--ink);
}

.article-single__content p{ margin-bottom: 20px; }
.article-single__content h2{ font-family: var(--font-serif); font-size: 26px; margin: 36px 0 14px; }
.article-single__content h3{ font-family: var(--font-serif); font-size: 21px; margin: 28px 0 12px; }
.article-single__content img{ border-radius: var(--radius-md); margin: 24px 0; }
.article-single__content a{ color: var(--terracotta); text-decoration: underline; }
.article-single__content ul, .article-single__content ol{ margin: 0 0 20px; padding-left: 22px; list-style: revert; }

/* ------------------------------------------------------------------ */
/* Responsive                                                           */
/* ------------------------------------------------------------------ */
@media (max-width: 900px){
	.section{ padding: 64px 0; }

	/* backdrop-filter sull'header crea un containing block per i figli position:fixed
	   (qui il pannello del menu mobile): niente sfocatura su mobile per non romperlo. */
	.site-nav{
		background: var(--bg);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.site-nav__links{
		position: fixed;
		inset: 76px 0 0 0;
		background: var(--bg);
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 20px 24px;
		transform: translateY(-12px);
		opacity: 0;
		pointer-events: none;
		transition: opacity .2s ease, transform .2s ease;
	}

	.site-nav__links.is-open{
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}

	.site-nav__links a{
		width: 100%;
		padding: 12px 0;
		border-bottom: 1px solid var(--border);
	}

	.site-nav__toggle{ display: flex; }
	.site-nav__cta{ display: none; }

	.hero__grid, .contact__layout{
		grid-template-columns: 1fr;
	}

	.hero__photo{ order: -1; max-width: 320px; margin: 0 auto; }
	.discipline-grid{ grid-template-columns: repeat(2, 1fr); }
	.principles-grid{ grid-template-columns: 1fr; gap: 32px; }
	.notebook-item__meta{ flex-wrap: wrap; }
	.site-footer__inner{ grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px){
	.discipline-grid{ grid-template-columns: 1fr; }
	.site-footer__bottom{ flex-direction: column; gap: 6px; }
	.subscribe-form{ flex-direction: column; align-items: stretch; }
}
