/* ============================================================
   VENUSTICA — Black, minimal, luxe (2026)
   Typography: General Sans (Söhne-class, free via Fontshare)
   Palette:    #000 bg · #F2EFE9 ink · #B8A179 accent (sparing)

   To upgrade to real Söhne (~€140 license):
   1. Buy from klim.co.nz/buy/soehne
   2. Drop .woff2 files in /assets/fonts/
   3. Replace --sans family below with 'Söhne'
   ============================================================ */

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

:root {
  --bg:        #000000;
  --bg-2:      #0a0a0a;
  --ink:       #FFFFFF;        /* pure white — true B&W per design call */
  --ink-dim:   rgba(255,255,255,0.45);  /* neutral grey, no warm tone */
  --line:      #1a1a1a;
  --accent:    #FFFFFF;        /* same as ink — no color anywhere */

  --sans:  'General Sans', -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', sans-serif;

  --pad-x:    clamp(20px, 5vw, 80px);
  --pad-y:    clamp(80px, 12vh, 160px);
  --maxw:     1440px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px var(--pad-x);
  z-index: 100;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  backdrop-filter: blur(2px);
}
.nav__logo {
  font-family: 'Unica One', 'General Sans', sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}
.nav__links {
  display: flex; gap: 32px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.nav__links a {
  position: relative;
  opacity: 0.85;
  transition: opacity .25s;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--ink);
  transition: width .35s ease;
}
.nav__links a:hover::after { width: 100%; }

/* Projects dropdown — Shuga-style hover menu (desktop) + tap-toggle (mobile) */
.nav__item--dd { position: relative; display: inline-flex; }
.nav__dropdown {
  position: absolute;
  top: 100%; left: 0;
  padding: 14px 0 0;
  display: flex; flex-direction: column;
  gap: 9px;
  background: transparent;
  border: none;
  white-space: nowrap;
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.nav__item--dd:hover .nav__dropdown,
.nav__item--dd.is-open .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a {
  opacity: 0.7;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.nav__dropdown a::after { display: none; }
.nav__dropdown a:hover { opacity: 1; }

@media (max-width: 720px) {
  .nav { padding: 18px var(--pad-x); }
  .nav__logo { font-size: 22px; }
  .nav__links { gap: 16px; font-size: 13px; letter-spacing: 0.02em; }
  /* Mobile dropdown — toggled by JS via .is-open (replaces hover), no panel */
  .nav__dropdown { left: 50%; transform: translate(-50%, -4px); padding: 12px 0 0; background: transparent; border: none; }
  .nav__item--dd.is-open .nav__dropdown { transform: translate(-50%, 0); }
}

/* ---------- HERO (left-aligned per Nielsen Norman F-pattern; smaller per design call) ---------- */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.30) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--pad-x) clamp(80px, 12vh, 140px);
  max-width: 900px;
  text-align: left;
}
.hero__title {
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 56px);  /* was 40-96px; reduced ~40% per amendment */
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 300;
  color: var(--ink);
  opacity: 0.88;
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.55;
  letter-spacing: 0;
}
.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 400;
  opacity: 0.6;
  animation: drift 2.4s ease-in-out infinite;
}
@keyframes drift {
  0%,100% { transform: translate(-50%, 0); opacity: 0.5; }
  50%     { transform: translate(-50%, 8px); opacity: 0.9; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all .3s ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(242,239,233,0.4);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- SECTION HEAD ---------- */
.section__head {
  padding: var(--pad-y) var(--pad-x) 60px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 24px;
}
.eyebrow--center { display: block; text-align: center; }
.section__title {
  font-weight: 300;
  font-size: clamp(24px, 3vw, 44px);   /* aligned: stays below hero's 56px max */
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 780px;
}

/* ---------- WORK ---------- */
.work { padding-bottom: var(--pad-y); }
.project {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding: clamp(40px, 8vh, 100px) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  transition: background .4s ease;
}
.project:hover { background: var(--bg-2); }
.project--reverse { grid-template-columns: 1fr 1.4fr; }
.project--reverse .project__media { order: 2; }
.project__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
}
.project__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.project:hover .project__media img { transform: scale(1.04); }
.project__cat {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: block;
  margin-bottom: 16px;
}
.project__title {
  font-weight: 300;
  font-size: clamp(24px, 3vw, 44px);   /* aligned with section title */
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.project__cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: padding .3s ease, color .3s ease;
}
.project:hover .project__cta { padding-right: 12px; }

.work__more {
  text-align: center;
  padding: 80px var(--pad-x) 0;
}
.link {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--ink); padding-bottom: 4px;
}
.link:hover { opacity: 0.7; }

@media (max-width: 720px) {
  .project, .project--reverse {
    grid-template-columns: 1fr;
  }
  .project--reverse .project__media { order: 0; }
}

/* ---------- BRANDS ---------- */
.brands {
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands .eyebrow { margin-bottom: 48px; }
.brands__row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px) clamp(24px, 3.5vw, 52px);
}
.brands__item {
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 26px);
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity .3s;
}
.brands__item:hover { opacity: 1; }
.brands__logo {
  height: 30px;
  width: auto;
  opacity: 0.9;
  transition: opacity .3s ease;
  object-fit: contain;
}
.brands__logo:hover { opacity: 1; }
/* Optical-weight overrides — bold-serif and 2-line marks read heavier at the same height */
.brands__logo--mm-cafe     { height: 24px; }
.brands__logo--late-eatery { height: 17px; }
@media (max-width: 600px) {
  .brands__logo { height: 22px; }
  .brands__logo--mm-cafe     { height: 17px; }
  .brands__logo--late-eatery { height: 12px; }
  .brands__row { gap: 16px 22px; }
}

/* ---------- SERVICES ---------- */
.services { background: var(--bg); }
.services__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-y);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 80px);
}
.service {
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.service__num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  display: block;
  margin-bottom: 24px;
}
.service__title {
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.service__body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.78;
  max-width: 320px;
}

@media (max-width: 880px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ---------- ABOUT ---------- */
.about {
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--line);
}
.about__inner {
  max-width: 900px;
  margin: 0 auto;
}
.about__lead {
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 56px);   /* the only large line in About */
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 720px;
}
.about__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.85;
  max-width: 620px;
}

@media (max-width: 720px) {
  .about__body { grid-template-columns: 1fr; }
}

/* ---------- CONTACT ---------- */
.contact {
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--line);
  text-align: center;
}
.contact__inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact__title {
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 56px);   /* aligned with hero header */
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.contact__sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto 48px;
}

/* ---------- FORM ---------- */
.form {
  display: flex; flex-direction: column;
  gap: 20px;
  max-width: 560px;
  margin: 0 auto 64px;
  text-align: left;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__field {
  display: flex; flex-direction: column;
  gap: 8px;
}
.form__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.form__field input,
.form__field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(242,239,233,0.2);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  padding: 8px 0;
  transition: border-color .3s ease;
  resize: none;
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.form__submit {
  margin-top: 16px;
  align-self: flex-start;
}
.form__status {
  font-size: 13px;
  text-align: left;
  margin-top: 12px;
  color: var(--ink);
  opacity: 0.7;
}
@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
}

/* ---------- CONTACT METHODS ---------- */
.contact__methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 64px auto 0;
}
.contact__method {
  display: flex; flex-direction: column; gap: 8px;
  padding: 28px 20px;
  border: 1px solid var(--line);
  transition: all .3s ease;
}
.contact__method:hover {
  border-color: var(--ink);
  background: var(--bg-2);
}
.contact__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.contact__value {
  font-weight: 400;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: -0.01em;
}

@media (max-width: 720px) {
  .contact__methods { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 80px var(--pad-x) 32px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.footer__row {
  max-width: var(--maxw);
  margin: 0 auto 48px;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.footer__logo {
  font-family: 'Unica One', 'General Sans', sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  display: block;
  margin-bottom: 8px;
}
.footer__tag {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-dim);
  max-width: 320px;
}
.footer__nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.footer__nav a:hover { opacity: 0.7; }
.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
}

@media (max-width: 720px) {
  .footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ---------- CASE PAGE (per Gessi reference) ---------- */
.case-hero {
  height: 100vh; min-height: 600px;
  position: relative; overflow: hidden;
}
.case-hero video, .case-hero img {
  width: 100%; height: 100%; object-fit: cover;
}
/* Sound toggle — starts muted (browser requirement); tap to unmute */
.case-hero__sound {
  position: absolute;
  bottom: 28px; right: 28px;
  z-index: 6;
  background: rgba(0,0,0,0.35);
  border: 0.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity .25s ease, background .25s ease, color .25s ease;
  backdrop-filter: blur(8px);
}
.case-hero__sound:hover { opacity: 1; background: rgba(0,0,0,0.55); }
.case-hero__sound.is-on { background: #fff; color: #000; border-color: #fff; opacity: 1; }
@media (max-width: 600px) {
  .case-hero__sound { bottom: 16px; right: 16px; padding: 8px 14px; font-size: 10px; }
}
.case-nav {
  position: absolute; top: 0; right: 0;
  padding: 32px var(--pad-x);
  z-index: 10;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
}
.case-nav a { border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.case-title {
  padding: var(--pad-y) var(--pad-x) 60px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.case-title h1 {
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 56px);   /* aligned with hero header */
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.case-meta {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 0 var(--pad-x) var(--pad-y);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 80px;
}
.case-meta__block + .case-meta__block { margin-top: 48px; }
.case-meta__label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 16px; display: block;
}
.case-meta__body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.9;
  max-width: 640px;
}
.case-grid {
  display: grid;
  gap: 4px;
  padding: 0 var(--pad-x) 4px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.case-grid--2 { grid-template-columns: 1fr 1fr; }
.case-grid img, .case-grid video {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.case-grid--full img, .case-grid--full video {
  aspect-ratio: 16/9;
}
.case-next {
  text-align: center;
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--line);
  margin-top: var(--pad-y);
}
.case-next__label {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 16px;
}
.case-next__title {
  font-weight: 300;
  font-size: clamp(24px, 3vw, 44px);   /* aligned with section title */
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.case-next__title:hover { opacity: 0.7; }

@media (max-width: 880px) {
  .case-meta { grid-template-columns: 1fr; gap: 40px; }
  .case-grid--2 { grid-template-columns: 1fr; }
}

/* ---------- PROJECTS INDEX (category grid, Shuga-class) ---------- */
.proj-head {
  padding: 180px var(--pad-x) 64px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.proj-category {
  padding: 0 var(--pad-x) var(--pad-y);
  max-width: var(--maxw);
  margin: 0 auto;
}
.proj-category__label {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.proj-card { display: block; }
.proj-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
}
.proj-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.proj-card:hover .proj-card__media img { transform: scale(1.04); }
.proj-card__meta { padding: 16px 4px 0; }
.proj-card__name {
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.proj-card__loc {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
}
@media (max-width: 880px) {
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-head { padding-top: 130px; }
}
@media (max-width: 560px) {
  .proj-grid { grid-template-columns: 1fr; }
}

/* ---------- REVEAL ON SCROLL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE REFINEMENTS — consolidated pass, ≤600px and ≤380px
   ============================================================ */
@media (max-width: 600px) {
  /* tighter vertical rhythm so sections don't feel cavernous on a phone */
  :root { --pad-y: clamp(56px, 9vh, 90px); }

  /* HERO — shorter, content breathes, no scroll cue */
  .hero { min-height: 540px; }
  .hero__content { padding-bottom: 60px; max-width: 100%; }
  .hero__title { font-size: 30px; line-height: 1.12; margin-bottom: 16px; }
  .hero__sub { font-size: 14px; margin-bottom: 28px; }
  .hero__cta { gap: 10px; }
  .hero__scroll { display: none; }
  .btn { padding: 13px 22px; font-size: 12px; }

  /* NAV — all four links stay, condensed */
  .nav { padding: 16px var(--pad-x); }
  .nav__logo { font-size: 16px; }
  .nav__links { gap: 13px; font-size: 12px; }

  /* SECTION HEADS */
  .section__head { padding-bottom: 40px; }

  /* WORK blocks */
  .project { padding: 36px var(--pad-x); gap: 22px; }

  /* SERVICES */
  .services__grid { gap: 32px; }
  .service { padding-top: 28px; }

  /* ABOUT */
  .about__lead { font-size: 30px; }

  /* CONTACT */
  .contact__title { font-size: 32px; }
  .contact__methods { margin-top: 40px; }
  .form { margin-bottom: 48px; }

  /* PROJECTS INDEX */
  .proj-head { padding-top: 108px; padding-bottom: 40px; }
  .proj-grid { gap: 22px 4px; }
  .proj-category__label { margin-bottom: 28px; }

  /* CASE PAGES */
  .case-hero { height: 80vh; min-height: 460px; }
  .case-nav { padding: 20px var(--pad-x); font-size: 12px; }
  .case-title { padding-bottom: 40px; }
  .case-meta { padding-top: 48px; }

  /* FOOTER */
  .footer { padding: 56px var(--pad-x) 28px; }
  .footer__row { margin-bottom: 36px; }
  .footer__nav { gap: 18px; flex-wrap: wrap; }
}

/* very small phones (iPhone SE / older Android) */
@media (max-width: 380px) {
  .nav__logo { font-size: 15px; }
  .nav__links { gap: 10px; font-size: 11px; }
  .hero__title { font-size: 26px; }
  .about__lead, .contact__title { font-size: 28px; }
}
