/* ============================================================
   HA MY Traiteur Asiatique — Design System
   Palette : rouge logo #C8102E · sombre #1C1C1C · ivoire #FAF7F0
   Type :    Caveat Brush (logo) · Fraunces (titres) · Inter (texte)
   ============================================================ */

:root {
  /* Couleurs */
  --red:        #C8102E;
  --red-deep:   #9B0C24;
  --red-soft:   #E63E54;
  --dark:       #1C1C1C;
  --dark-2:     #2A2A2A;
  --dark-3:     #3a3a3a;
  --ivory:      #FAF7F0;
  --cream:      #F4EFE4;
  --line:       #ece5d3;
  --muted:      #6b6b6b;
  --muted-2:    #9a9a9a;

  /* Typo */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-brush:   'Caveat Brush', cursive;

  /* Layout */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(28,28,28,.06);
  --shadow:    0 12px 36px rgba(28,28,28,.10);
  --shadow-lg: 0 24px 60px rgba(28,28,28,.16);

  /* Easing */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Focus accessible */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--dark);
}

::selection { background: var(--red); color: #fff; }

/* ── Layout helpers ──────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
  position: relative;
}
.section-dark {
  background: var(--dark);
  color: var(--ivory);
}
.section-cream {
  background: var(--cream);
}

/* Section heading block */
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--red-soft); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--dark);
}
.section-title.light { color: var(--ivory); }

.section-subtitle {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px auto 0;
  max-width: 140px;
}
.divider span:not(.dot) {
  flex: 1;
  height: 1px;
  background: var(--red);
  opacity: .35;
}
.divider .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}
.divider.light span:not(.dot) { background: var(--red-soft); opacity: .55; }
.divider.light .dot { background: var(--red-soft); }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 28, 28, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s var(--ease), padding .3s var(--ease);
}
.navbar.scrolled {
  background: rgba(20, 20, 20, .96);
  border-bottom-color: rgba(200,16,46,.3);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex: none;
  height: 44px;
  transition: transform .3s var(--ease);
}
.nav-logo img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.4));
}
.nav-logo:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  color: var(--ivory);
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--red-soft); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  flex: none;
  padding: 10px 20px;
  border: 1.5px solid var(--red);
  color: var(--ivory);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .25s var(--ease);
}
.nav-cta:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 32px;
  height: 32px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ivory);
  margin: 5px auto;
  border-radius: 2px;
  transition: all .3s var(--ease);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: -5%;
  background: url('https://images.unsplash.com/photo-1526318896980-cf78c088247c?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  z-index: -2;
  animation: heroZoom 22s var(--ease) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(28,28,28,.55) 0%, rgba(28,28,28,.85) 60%, rgba(28,28,28,.95) 100%),
    linear-gradient(180deg, transparent 60%, var(--dark) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 100px;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--red-soft);
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1px solid rgba(230, 62, 84, .4);
  border-radius: 50px;
  background: rgba(200, 16, 46, .08);
  backdrop-filter: blur(4px);
}
.hero-logo {
  margin: 0 auto 24px;
  line-height: 0;
  max-width: min(620px, 80vw);
}
.hero-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(200, 16, 46, .4));
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 44px;
  color: rgba(250, 247, 240, .92);
  letter-spacing: .01em;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}
.hero-badge .stars {
  color: #F4C430;
  letter-spacing: 2px;
  font-size: .95rem;
}
.hero-badge .badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.hero-badge strong {
  font-size: .95rem;
  color: var(--ivory);
}
.hero-badge span {
  font-size: .75rem;
  color: var(--muted-2);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 50px;
  z-index: 2;
}
.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: var(--red-soft);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  40%  { opacity: 1; }
  80%  { opacity: 0; transform: translate(-50%, 16px); }
  100% { opacity: 0; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(200, 16, 46, .35);
}
.btn-primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(200, 16, 46, .45);
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--ivory);
  transform: translateY(-2px);
}

/* ── Horaires ────────────────────────────────────────────── */
.hours-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  padding: 48px 56px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--line);
}
.hours-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 4px;
}

/* Live "Open now" indicator */
.hours-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  margin: 0 auto 30px;
  width: fit-content;
  background: var(--cream);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  position: relative;
}
.hours-status.is-open .status-dot {
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, .6);
  animation: pulse 2s infinite;
}
.hours-status.is-closed .status-dot { background: var(--red); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, .6); }
  70%  { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
.hours-status.is-open .status-text { color: #1d8d4f; }
.hours-status.is-closed .status-text { color: var(--red-deep); }

.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .96rem;
  gap: 16px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span:first-child {
  font-weight: 600;
  color: var(--dark);
}
.hours-list li span:last-child {
  color: var(--muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.hours-list li.closed span:last-child {
  color: var(--red);
  font-weight: 600;
  font-style: italic;
}

/* ── Photos (grille uniforme) ────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.photo:hover img { transform: scale(1.1); }
.photo:hover::after { opacity: 1; }

/* ── Menu ────────────────────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.menu-category {
  position: relative;
  background: #fff;
  padding: 56px 44px 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.menu-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.menu-wide {
  grid-column: 1 / -1;
}

.menu-num {
  position: absolute;
  top: 22px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .1em;
}
.menu-category h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 28px;
  color: var(--dark);
}
.menu-category h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--red);
  margin-top: 14px;
}

/* Sous-titre dans une carte (ex. "Les Vapeurs" sous "Les Entrées") */
.menu-subtitle {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--dark);
  margin-top: 36px;
  margin-bottom: 18px;
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.menu-subtitle::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  margin-top: 10px;
}

/* Grille interne 2 colonnes pour la carte "Les Plats" */
.menu-plats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 56px;
}

/* Bloc de plats partageant un même prix */
.menu-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-group:last-child { border-bottom: 0; }

.menu-group ul {
  list-style: none;
  flex: 1;
}
.menu-group ul li {
  font-size: .95rem;
  color: var(--dark-2);
  padding: 3px 0;
  line-height: 1.45;
}

/* Ligne simple : un seul plat + un prix */
.menu-line .menu-name {
  flex: 1;
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark-2);
}
.menu-line .menu-name em {
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
  font-size: .88em;
  margin-left: 2px;
}

/* Prix */
.menu-price {
  flex: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  letter-spacing: -.01em;
}
.menu-price small {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 3px;
  letter-spacing: .02em;
  text-transform: lowercase;
}

/* ── Avis ────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.review {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.review::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--red);
  opacity: .12;
}
.review-stars {
  color: #F4C430;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--dark-2);
  margin-bottom: 28px;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex: none;
}
.review-author strong {
  display: block;
  font-size: .95rem;
  color: var(--dark);
}
.review-author span {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .02em;
}
.reviews-cta {
  text-align: center;
  margin-top: 50px;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: stretch;
}
.contact-info {
  background: #fff;
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}
.contact-row:last-of-type { border-bottom: 0; margin-bottom: 24px; }
.contact-icon {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red);
  margin-bottom: 4px;
}
.contact-row p {
  font-size: .96rem;
  color: var(--dark-2);
  line-height: 1.5;
}
.contact-row a {
  color: var(--dark);
  border-bottom: 1px solid var(--red);
  transition: color .25s var(--ease);
}
.contact-row a:hover { color: var(--red); }

.contact-cta {
  width: 100%;
  margin-top: 8px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 460px;
  border: 1px solid var(--line);
}
.contact-map iframe {
  filter: grayscale(.2) contrast(1.05);
  transition: filter .4s var(--ease);
}
.contact-map:hover iframe { filter: none; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--ivory);
  padding: 70px 0 40px;
  text-align: center;
  position: relative;
}
.footer-inner {
  position: relative;
  z-index: 1;
}
.footer-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 18px;
  max-width: 220px;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--muted-2);
  margin-bottom: 28px;
}
.footer-copy {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .03em;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Reveal animation ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero .reveal { transition-delay: .1s; }
.hero .reveal:nth-child(2) { transition-delay: .2s; }
.hero .reveal:nth-child(3) { transition-delay: .35s; }
.hero .reveal:nth-child(4) { transition-delay: .5s; }
.hero .reveal:nth-child(5) { transition-delay: .65s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  .status-dot, .hero-scroll span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }

  .menu-grid { grid-template-columns: 1fr; gap: 24px; }
  .menu-plats-grid { grid-template-columns: 1fr; gap: 4px 0; }

  .reviews-grid { grid-template-columns: 1fr; gap: 20px; max-width: 600px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 340px; }
}

@media (max-width: 760px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 44px; }

  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20,20,20,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 24px;
    border-bottom: 1px solid rgba(200,16,46,.3);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { text-align: center; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 1rem;
  }
  .nav-links a::after { display: none; }

  .hero-content { padding: 100px 20px 80px; }
  .hero-tagline br { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .hours-card { padding: 36px 24px; }
  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .hours-list li span:last-child { text-align: left; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .contact-info { padding: 36px 28px; }
}
