/* =========================================================
   Zum dicken Portugiesen – clubhaus-ittlingen.de
   Mobile-first, Dark Theme
   ========================================================= */

:root {
  /* Farben (abgeleitet aus dem Logo) */
  --bg:            #14100E;
  --bg-alt:        #1B1512;
  --surface:       #221A16;
  --surface-2:     #2C221C;
  --line:          rgba(246, 239, 228, .12);

  --cream:         #F6EFE4;
  --cream-dim:     #CDC2B2;
  --muted:         #9C9184;

  --wine:          #8E1F27;
  --wine-bright:   #B02932;
  --gold:          #C9A227;
  --gold-soft:     #E0C46B;

  /* Typo */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --wrap: 1160px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: var(--gold); }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.1rem, 8vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 5.5vw, 2.7rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

p { margin: 0 0 1em; }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: #14100E; padding: 12px 18px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

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

/* ---------- Eyebrow / Titel ---------- */
.eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 .6em;
}

.section-title { margin-bottom: .4em; }

.section-intro {
  color: var(--cream-dim);
  max-width: 58ch;
  font-size: 1.05rem;
}

.micro { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}
.btn-primary:hover { background: var(--wine-bright); border-color: var(--wine-bright); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--gold-soft);
  border-color: rgba(224, 196, 107, .45);
}
.btn-outline:hover { background: rgba(224, 196, 107, .1); color: var(--gold); border-color: var(--gold); }

.btn-ghost {
  background: rgba(246, 239, 228, .06);
  color: var(--cream);
  border-color: rgba(246, 239, 228, .16);
}
.btn-ghost:hover { background: rgba(246, 239, 228, .12); color: var(--cream); }

.btn-sm { padding: 10px 18px; font-size: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 16, 14, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(20, 16, 14, .96); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.brand { display: flex; align-items: center; gap: 10px; color: var(--cream); }
.brand:hover { color: var(--cream); }

.brand-mark {
  width: 44px; height: 44px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(224, 196, 107, .35);
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-line-1 {
  font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold);
}
.brand-line-2 {
  font-family: var(--font-head); font-weight: 900; font-size: 1.12rem; letter-spacing: .01em;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  padding: 0 11px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--cream); border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: 68px 0 auto 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  display: none;
  flex-direction: column;
  padding: 12px 20px 24px;
  gap: 2px;
}
.site-nav.is-open { display: flex; }

.site-nav a {
  color: var(--cream);
  padding: 13px 4px;
  border-bottom: 1px solid rgba(246, 239, 228, .07);
  font-weight: 500;
}
.site-nav a:last-of-type { border-bottom: 0; }
.site-nav .nav-cta { margin-top: 12px; color: var(--cream); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 48px 0 64px;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 460px at 50% 0%, rgba(142, 31, 39, .35), transparent 70%),
    radial-gradient(700px 420px at 85% 70%, rgba(201, 162, 39, .12), transparent 70%),
    linear-gradient(180deg, #1B1512 0%, var(--bg) 75%);
}
.hero-inner { position: relative; }

.hero-logo {
  width: min(320px, 72vw);
  margin: 0 auto 26px;
  position: relative;
}
.hero-logo img {
  width: 100%;
  border-radius: 50%;
  background: #FBF6EE;
  padding: 6px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(224, 196, 107, .35);
}
.hero-logo-fallback { display: none; }
.hero-logo.is-missing img { display: none; }
.hero-logo.is-missing .hero-logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #FBF6EE;
  color: #14100E;
  box-shadow: var(--shadow), 0 0 0 1px rgba(224, 196, 107, .35);
  padding: 24px;
}
.hero-logo-fallback span { font-size: .8rem; letter-spacing: .3em; text-transform: uppercase; color: #7a6a52; }
.hero-logo-fallback strong { font-family: var(--font-head); font-size: 2rem; font-weight: 900; line-height: 1; }
.hero-logo-fallback em {
  font-family: var(--font-head); font-style: normal; font-weight: 900;
  font-size: 1.5rem; color: var(--wine); line-height: 1.1;
}

.hero h1 { margin-bottom: .35em; }
.hero h1 .accent { color: var(--gold-soft); }

.lead {
  color: var(--cream-dim);
  font-size: 1.08rem;
  max-width: 54ch;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto 30px;
}

.hero-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: .9rem;
}
.hero-facts span { color: var(--cream-dim); }

.scroll-hint { display: none; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 34px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover { transform: translateY(-3px); border-color: rgba(224, 196, 107, .35); background: var(--surface-2); }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--cream-dim); margin: 0; font-size: .97rem; }

.card-icon {
  font-size: 1.7rem;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(142, 31, 39, .22);
  border: 1px solid rgba(224, 196, 107, .22);
  margin-bottom: 16px;
}

.note {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 39, .07);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.note p { margin: 0; color: var(--cream-dim); font-size: .95rem; }

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.split-text p { color: var(--cream-dim); }

.check-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--cream-dim);
  font-size: .97rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: .55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, .16);
}

/* Fußball-Grafik */
.split-visual { display: flex; justify-content: center; }
.pitch {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(246, 239, 228, .18);
  background:
    repeating-linear-gradient(90deg, rgba(246,239,228,.03) 0 40px, transparent 40px 80px),
    linear-gradient(160deg, #1D2A1F, #16201A 60%, #131A15);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.pitch-circle {
  position: absolute; top: 50%; left: 50%;
  width: 34%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(246, 239, 228, .18);
  border-radius: 50%;
}
.pitch-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: rgba(246, 239, 228, .18);
}
.pitch-box {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 16%; height: 46%;
  border: 2px solid rgba(246, 239, 228, .18);
}
.pitch-box-l { left: 0; border-left: 0; }
.pitch-box-r { right: 0; border-right: 0; }
.pitch-label {
  position: relative;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.1rem, 4.4vw, 1.6rem);
  color: var(--cream);
  text-shadow: 0 4px 20px rgba(0, 0, 0, .7);
  padding: 10px 18px;
  background: rgba(20, 16, 14, .55);
  border-radius: 999px;
  border: 1px solid rgba(224, 196, 107, .3);
}

/* ---------- Optionen (Feiern) ---------- */
.option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 34px;
}

.option-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.option-card p { color: var(--cream-dim); }
.option-card .btn { margin-top: auto; align-self: flex-start; }

.option-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(224, 196, 107, .35);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 16px;
}

.facts-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}
.fact {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.fact strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold-soft);
  line-height: 1.1;
}
.fact span { font-size: .82rem; color: var(--muted); }

/* ---------- Öffnungszeiten ---------- */
.hours {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: .98rem;
}
.hours th, .hours td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid rgba(246, 239, 228, .08);
}
.hours th { font-weight: 500; color: var(--cream); }
.hours td { text-align: right; color: var(--cream-dim); font-variant-numeric: tabular-nums; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.contact-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.contact-box h3 { margin-bottom: .6em; }
.contact-box p, .contact-box address { color: var(--cream-dim); font-style: normal; }
.contact-lines { margin-top: 14px; }

.map-box { display: flex; flex-direction: column; }
.map-consent {
  background: var(--bg-alt);
  border: 1px dashed rgba(246, 239, 228, .2);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.map-consent p { font-size: .9rem; margin-bottom: 14px; }
.map-frame {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: var(--radius);
  display: block;
}

/* ---------- Formular ---------- */
.form-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  margin-top: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }

.field label, .fieldset-legend {
  font-size: .88rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .01em;
}
.field .hint { font-size: .8rem; color: var(--muted); font-weight: 400; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(246, 239, 228, .16);
  border-radius: 12px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 14px;
  transition: border-color .18s ease, background .18s ease;
  -webkit-appearance: none;
  appearance: none;
}
select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-soft) 50%), linear-gradient(135deg, var(--gold-soft) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 4px), calc(100% - 14px) calc(1em + 4px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}
textarea { min-height: 130px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #100D0B;
}

input::placeholder, textarea::placeholder { color: #6E6559; }

fieldset { border: 0; padding: 0; margin: 0; }

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}
.choice {
  position: relative;
  display: block;
  background: var(--bg);
  border: 1px solid rgba(246, 239, 228, .16);
  border-radius: var(--radius);
  padding: 18px 18px 18px 50px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.choice input {
  position: absolute;
  left: 18px; top: 20px;
  width: 18px; height: 18px;
  accent-color: var(--wine-bright);
}
.choice strong { display: block; font-size: 1rem; margin-bottom: 3px; }
.choice span { font-size: .87rem; color: var(--muted); }
.choice:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201, 162, 39, .08);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: var(--cream-dim);
}
.consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--wine-bright); flex-shrink: 0; }

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}
.form-actions .btn { width: 100%; }

.form-status {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: .95rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-ok { background: rgba(58, 122, 68, .18); border: 1px solid rgba(120, 200, 130, .35); color: #CFEFD4; }
.form-status.is-error { background: rgba(142, 31, 39, .22); border: 1px solid rgba(176, 41, 50, .5); color: #F2D3D5; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ---------- Seiten-Header (Unterseiten) ---------- */
.page-head {
  position: relative;
  padding: 46px 0 34px;
  background:
    radial-gradient(760px 380px at 20% 0%, rgba(142, 31, 39, .32), transparent 70%),
    linear-gradient(180deg, #1B1512, var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-head h1 { font-size: clamp(1.9rem, 7vw, 3.2rem); }
.page-head .lead { margin-left: 0; text-align: left; }

/* ---------- Legal ---------- */
.legal { padding: 48px 0 64px; }
.legal-content { max-width: 76ch; }
.legal-content h2 { font-size: 1.4rem; margin-top: 2em; }
.legal-content h3 { font-size: 1.08rem; margin-top: 1.6em; }
.legal-content p, .legal-content li { color: var(--cream-dim); font-size: .98rem; }
.legal-content ul { padding-left: 22px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0F0C0A;
  border-top: 1px solid var(--line);
  padding: 44px 0 26px;
  margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--cream-dim); font-size: .93rem; }
.footer-col a:hover { color: var(--gold); }
.footer-brand {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  margin: 0 0 6px;
}
.footer-head {
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
  font-weight: 600;
}
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 239, 228, .08);
}
.footer-bottom p { margin: 0; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* =========================================================
   Tablet ab 700px
   ========================================================= */
@media (min-width: 700px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .option-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-row { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: row; justify-content: center; max-width: none; }
  .hero-facts { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 8px 28px; }
  .form-actions { flex-direction: row; align-items: center; }
  .form-actions .btn { width: auto; }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
  .form-shell { padding: 34px 32px; }
}

/* =========================================================
   Desktop ab 960px
   ========================================================= */
@media (min-width: 960px) {
  body { font-size: 17px; }

  .nav-toggle { display: none; }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 26px;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .site-nav a {
    padding: 6px 0;
    border: 0;
    font-size: .95rem;
    color: var(--cream-dim);
  }
  .site-nav a:hover { color: var(--gold); }
  .site-nav .nav-cta { margin-top: 0; padding: 11px 20px; color: var(--cream); }
  .site-nav .nav-cta:hover { color: #fff; }

  .header-inner { min-height: 76px; }
  .brand-mark { width: 50px; height: 50px; }
  .brand-line-2 { font-size: 1.25rem; }

  .hero { padding: 44px 0 76px; }
  .hero-logo { width: 250px; margin-bottom: 20px; }
  .hero h1 { font-size: clamp(2.6rem, 4.4vw, 3.7rem); }

  .section { padding: 96px 0; }
  .cards { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .split { grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
  .contact-grid { grid-template-columns: 1fr 1fr 1fr; }
  .map-frame { min-height: 100%; }

  .scroll-hint {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 26px;
    width: 26px; height: 42px;
    transform: translateX(-50%);
    border: 2px solid rgba(246, 239, 228, .28);
    border-radius: 14px;
  }
  .scroll-hint::after {
    content: "";
    position: absolute;
    left: 50%; top: 9px;
    width: 3px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: wheel 1.8s ease-in-out infinite;
  }
  @keyframes wheel {
    0%, 100% { opacity: 0; transform: translate(-50%, 0); }
    40%      { opacity: 1; transform: translate(-50%, 6px); }
    80%      { opacity: 0; transform: translate(-50%, 14px); }
  }
}

@media (min-width: 1100px) {
  .page-head { padding: 70px 0 50px; }
}
