/* CSS Document */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--bg: #ececec;
	--paper: #fbfaf7;
	--text: #222;
	--light: #9c9c9c;
    --red: #DE1212;
}
body {
	background: var(--bg);
	font-family: Inter, sans-serif;
	color: var(--text);
	line-height: 1.5;
}
a {
    color: var(--text);
    text-decoration: none;
}
a:hover {
	color: var(--red);
}
.wrapper {
	width: min(1180px,92%);
	margin: 30px auto;
	background: var(--paper);
	box-shadow: 0 30px 70px rgba(0,0,0,.12);
	min-height: calc(100vh - 60px);
}
.container {
	width: min(980px,88%);
	margin: auto;
}
/* ---------- Header ---------- */
header {
	padding-top: 32px;
    padding-bottom: 0px;
}
.header-inner {
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.logo {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.4em;
	letter-spacing: .02em;
	font-weight: 400;
    color: #666;
}
.logo span {
	font-size: .75em;
}
nav {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}
nav a {
	text-decoration: none;
	color: #777;
	text-transform: uppercase;
	letter-spacing: .28em;
	font-size: 11px;
	transition: .3s;
}
nav a:hover {
	color: #111;
}
/* ---------- Hero ---------- */
.hero {
	padding: 30px 0 0;
	width: 100%;
}
.hero h1 {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.4em;
	font-weight: 400;
	line-height: 1.2;
	width: 100%;
	max-width: none;
}
.eyebrow {
	color: #666;
	letter-spacing: .22em;
	font-size: 1em;
	margin-bottom: 30px;
}
.focus {
	font-family: "Cormorant Garamond", serif;
	color: #666;
	letter-spacing: .1em;
	font-size: 1.4em;
	margin-top: 20px;
}
.hero em {
	font-style: italic;
	font-weight: 400;
}
.red {
	color: #DE1212;
}
.space {
	margin-top: 15px;
}
/* ---------- Feature Blocks ---------- */

.features{
    display:grid;
    grid-template-columns:1fr;
    margin:0 0 0px;
}

.feature{
    padding:34px 0;
}

.feature + .feature{
    border-top:1px solid #DE1212;
}

.feature h2{
    font-family:"Cormorant Garamond",serif;
    font-size:2rem;
    font-weight:400;
    margin-bottom:18px;

}
.feature p{
    text-align: justify;
    color:#666;
    line-height:1.8;
    max-width:34ch;
    hyphens:auto;
    -webkit-hyphens:auto;
    -moz-hyphens:auto;
    -ms-hyphens:auto;
    overflow-wrap:break-word;
    word-break:normal
}
@media(min-width:900px){
.features{
    grid-template-columns:repeat(3,1fr);
    gap:48px;
}
.feature{
    padding:0;
}
.feature + .feature{
    border-top:none;
    border-left:1px solid #DE1212;
    padding-left:32px;
}
}
/* ---------- CTA ---------- */
.cta {
	text-align: center;
}
.cta h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem,5vw,2rem);
	font-weight: 400;
	line-height: 1.15;
	max-width: 700px;
	margin: 0 auto 25px;
}
.button {
	display: inline-block;
	padding: 8px 24px;
	text-decoration: none;
	color: var(--red);
	border: 1px solid #DE1212;
	font-size: .9rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	transition: .25s;
	background: var(--paper);
}
.button:hover {
	background: #DE1212;
	border-color: #DE1212;
	color: #fff;
}
.mobile-only{
    display:none;
}
@media (max-width: 767px){
.mobile-only{
    display:block;
    margin-top: 20px;
    margin-bottom: 10px;
  	text-align: center;
}
}
/* ---------- Footer ---------- */
footer {
	padding: 70px 0 45px;
}
.footer-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.bar {
	width: 40px;
	height: 40px;
	background-size: contain;
	background-image: url(img/stift_klein.jpg);
	border-radius: 50%;
}
.stift {
	clip-path: circle(50%);
}
.social {
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	gap: 16px;
	letter-spacing: .04em;
    color: #666;
}
.social a {
	text-decoration: none;
	color: #666;
	font-size: 12px;
	letter-spacing: .1em;
}
.imprint {
	border-style: none;
	background: transparent;
	font-size: 12px;
	gap: 16px;
	letter-spacing: .12em;
	color: #666;
}
.imprint:hover {
	border-style: none;
	background: transparent;
	font-size: 12px;
	gap: 16px;
	letter-spacing: .12em;
	color: #DE1212;
    cursor:pointer;
}
/* ---------- Desktop ---------- */
@media(min-width:900px) {
header {
	padding-top: 50px;
    padding-bottom: 40px;
}
.header-inner {
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.logo {
	font-size: 2.3em;
}
nav {
	gap: 32px;
}
.hero {
	padding-top: 10px;
	padding-bottom: 0px;
}
.hero h1 {
	font-size: 1.7em;
	font-weight: 400;
	line-height: 1.2;
}
.focus {
	margin-top: 30px;
}
.features {
	grid-template-columns: repeat(3,1fr);
	gap: 28px;
	padding-bottom: 50px;
}
footer {
	padding-top: 20px;
}
.footer-inner {
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}
.social {
	gap: 18px;
}
}
/* ---------- Modal ---------- */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	inset: 0;
	background: rgba(0,0,0,.45);
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.modal-box {
	background: var(--paper);
	width: 100%;
	max-width: 800px;
	max-height: 95%;
	padding: 50px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0,0,0,.15);
	overflow-y: auto;
}
.close-modal {
	position: absolute;
	right: 20px;
	top: 15px;
	border: none;
	background: none;
	font-size: 32px;
	cursor: pointer;
}
.modal-box h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.8rem;
	font-weight: 400;
	margin-bottom: 14px;
}
.modal-box h3 {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.4rem;
	font-weight: 400;
	margin-bottom: 14px;
}
.modal-box label {
	display: block;
	margin-top: 20px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.modal-box input, .modal-box textarea {
	width: 100%;
	padding: 15px;
	margin-top: 8px;
	border: 1px solid #ddd;
	font-size: 16px;
	font-family: inherit;
}
.modal-box textarea {
	resize: vertical;
}
.modal-box form button {
	margin-top: 30px;
	display: inline-block;
	padding: 8px 24px;
	text-decoration: none;
	color: var(--text);
	border: 1px solid #DE1212;
	font-size: .9rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	transition: .25s;
	background: #fbfaf7;
}
@media(max-width:600px) {
.modal-box {
	padding: 30px;
}
.modal-box h2 {
	font-size: 36px;
}
.modal-box h3 {
	font-size: 26px;
}
}
.gg-phone {
  box-sizing: border-box;
  position: relative;
  display: inline-block;   /* statt block */
  vertical-align: middle;  /* zusätzlich, für saubere Ausrichtung zur Textbaseline */
  width: 22px;
  height: 22px;
  transform: scale(var(--ggs, 0.8));
}
.gg-phone::after,
.gg-phone::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
}
.gg-phone::after {
  width: 18px;
  height: 18px;
  border-top-left-radius: 1px;
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 12px;
  border-left: 4px solid;
  border-bottom: 4px solid;
  left: 2px;
  bottom: 2px;
  background:
    linear-gradient(to left, currentColor 10px, transparent 0) no-repeat right
      11px/6px 4px,
    linear-gradient(to left, currentColor 10px, transparent 0) no-repeat -1px 0/4px
      6px;
}
.gg-phone::before {
  width: 20px;
  height: 20px;
  border: 6px double;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
  bottom: 2px;
  left: 2px;
}
.gg-mail,
.gg-mail::after {
  display: inline-block;   /* statt block */
  vertical-align: middle;  /* zusätzlich, für saubere Ausrichtung zur Textbaseline */
  box-sizing: border-box;
  height: 16px;
  border: 2px solid;
}
.gg-mail {
  overflow: hidden;
  transform: scale(var(--ggs, 1));
  position: relative;
  width: 20px;
  border-radius: 2px;
}
.gg-mail::after {
  content: "";
  position: absolute;
  border-radius: 3px;
  width: 14px;
  transform: rotate(-45deg);
  bottom: 5px;
  left: 0;
}