:root {
  --cream: #f7f1e6;
  --ivory: #fcf9f2;
  --sand: #ece1cf;
  --line: #e0d3bd;
  --taupe: #8a745c;
  --brown: #503c29;
  --brown-deep: #382a1c;
  --footer-bg: #2b2015;
  --ink: #241c13;
  --gold: #b3873e;
  --gold-soft: #d3b078;
  --shadow: 0 24px 48px -30px rgba(56, 42, 28, 0.4);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Mulish", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
}

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

a {
  color: var(--brown);
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--gold-soft);
  color: var(--brown-deep);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 100;
  background: var(--brown-deep);
  color: var(--ivory);
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 5.4vw, 3.7rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.55rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
}

p {
  max-width: 62ch;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.kicker::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--gold-soft);
}

.section {
  padding-block: clamp(3.5rem, 8vw, 5.8rem);
  border-top: 1px solid var(--line);
}

.section--ivory {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.section-head {
  max-width: 56rem;
  margin-bottom: clamp(2rem, 4.5vw, 3.2rem);
}

.section-head h2 {
  margin-top: 0.9rem;
}

.section-head p {
  margin-top: 1.1rem;
  color: var(--taupe);
  font-size: 1.02rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brown);
  border-color: var(--brown);
  color: #fdfaf4;
}

.btn-primary:hover {
  background: var(--brown-deep);
  border-color: var(--brown-deep);
}

.btn-ghost {
  border-color: var(--brown);
  color: var(--brown);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(80, 60, 41, 0.08);
}

.btn-light {
  background: var(--ivory);
  color: var(--brown-deep);
}

.btn-light:hover {
  background: var(--gold-soft);
}

.btn-outline-light {
  border-color: rgba(252, 249, 242, 0.55);
  color: #fdfaf4;
}

.btn-outline-light:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn .arrow {
  font-family: var(--serif);
  font-size: 1.1em;
  line-height: 1;
}

.arrow-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.arrow-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.arrow-link .arrow {
  font-family: var(--serif);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-soft);
  background: var(--ivory);
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown-deep);
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.site-nav a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  padding-block: 0.4rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:not(.btn):hover {
  color: var(--brown);
  border-color: var(--gold-soft);
}

.site-nav a[aria-current="page"] {
  color: var(--brown-deep);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--brown);
  color: var(--brown);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  cursor: pointer;
}

.hero {
  padding-block: clamp(3.2rem, 7.5vw, 6rem);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 78%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero-copy > * + * {
  margin-top: 1.4rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--taupe);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-note {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: var(--taupe);
  border-left: 2px solid var(--gold-soft);
  padding-left: 1rem;
  max-width: 30rem;
}

.frame {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 0.8rem;
  box-shadow: var(--shadow);
  outline: 1px solid var(--sand);
  outline-offset: 10px;
}

.frame img {
  width: 100%;
}

.frame-caption {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--taupe);
  text-align: center;
  letter-spacing: 0.04em;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split > * + * {
  margin-top: 0;
}

.split-body > * + * {
  margin-top: 1.2rem;
}

.aside-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}

.aside-card > * + * {
  margin-top: 1.1rem;
}

.aside-title {
  font-size: 1.35rem;
}

.aside-note {
  font-size: 0.9rem;
  color: var(--taupe);
}

.loc-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}

.loc-list li:last-child {
  border-bottom: 0;
}

.loc-label {
  font-weight: 700;
  color: var(--brown);
}

.loc-value {
  color: var(--taupe);
  text-align: right;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.45rem;
}

.service-card p {
  color: var(--taupe);
  font-size: 0.96rem;
  flex-grow: 1;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.4rem;
}

.proof-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  text-align: center;
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proof-card--third {
  grid-column: span 2;
}

.proof-card--half {
  grid-column: span 3;
}

.proof-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0.7rem;
  background: var(--cream);
  border: 1px solid var(--sand);
}

.proof-media img {
  position: absolute;
  inset: 0.7rem;
  width: calc(100% - 1.4rem);
  height: calc(100% - 1.4rem);
  object-fit: contain;
}

.proof-media--wide {
  aspect-ratio: 4 / 3;
}

.span-2 {
  grid-column: 1 / -1;
}

.proof-card figcaption,
.media-card figcaption {
  font-size: 0.84rem;
  color: var(--taupe);
  max-width: 48ch;
}

.proof-card figcaption strong,
.media-card figcaption strong {
  color: var(--brown);
  font-weight: 700;
}

.strip-frame {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: clamp(1rem, 2.5vw, 1.6rem);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.strip-frame img {
  width: auto;
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.proof-disclaimer {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: var(--taupe);
  text-align: center;
}

.cta-card {
  background: linear-gradient(135deg, var(--footer-bg) 0%, var(--brown) 100%);
  border-top: 2px solid var(--gold);
  color: #efe6d5;
  padding: clamp(2.2rem, 5vw, 3.6rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
}

.cta-card h2,
.cta-card h3 {
  color: var(--ivory);
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
}

.cta-card p {
  margin-top: 0.6rem;
  color: rgba(239, 230, 213, 0.8);
  font-size: 0.97rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.page-head {
  padding-block: clamp(3rem, 7vw, 5rem) clamp(2.4rem, 5vw, 3.6rem);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}

.page-head h1 {
  margin-top: 1rem;
  max-width: 18ch;
}

.page-head .lead {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  color: var(--taupe);
  max-width: 44rem;
}

.media-stack {
  display: grid;
  gap: 1.4rem;
}

.media-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  text-align: center;
}

.media-card img {
  width: auto;
  max-width: 100%;
  max-height: 460px;
  object-fit: contain;
}

.img-sq {
  width: min(340px, 100%) !important;
}

.img-portrait {
  width: auto !important;
  max-width: 100%;
  max-height: 460px;
  margin-inline: auto;
}

.media-card--side img {
  width: auto;
  max-width: min(100%, 300px);
  max-height: 360px;
}

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  padding: 0.3rem 0.7rem;
}

.svc-section {
  padding-block: clamp(3rem, 7vw, 5.2rem);
  border-top: 1px solid var(--line);
}

.svc-section--ivory {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.svc-head {
  max-width: 56rem;
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}

.svc-head h2 {
  margin-top: 0.9rem;
}

.svc-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}

.svc-block:last-child {
  margin-bottom: 0;
}

.svc-block--gallery {
  display: block;
}

.svc-block--gallery .svc-text {
  max-width: 56rem;
  margin-bottom: 1.8rem;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-gallery--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-gallery .media-card {
  justify-content: center;
}

.service-gallery img,
.service-gallery .img-portrait,
.service-gallery .media-card--side img {
  max-height: 360px;
}

.svc-text > * + * {
  margin-top: 1.2rem;
}

.svc-text h3 {
  font-size: 1.5rem;
}

.svc-text h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.svc-text p {
  color: var(--ink);
  font-size: 0.98rem;
}

.svc-cta {
  margin-top: 2.2rem;
}

.duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.note-card {
  border: 1px dashed var(--gold-soft);
  background: #fbf6ec;
  padding: 1.4rem 1.6rem;
  font-size: 0.92rem;
  color: var(--taupe);
}

.note-card strong {
  color: var(--brown);
}

.pallete-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2rem;
}

.swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.swatch-color {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 4px var(--ivory), var(--shadow);
}

.swatch span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}

.type-sample {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}

.type-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 1.6rem;
  text-align: center;
}

.type-card .glyph {
  font-size: 2.6rem;
  line-height: 1.1;
  color: var(--brown-deep);
}

.type-card--serif .glyph {
  font-family: var(--serif);
  font-weight: 600;
}

.type-card--sans .glyph {
  font-family: var(--sans);
  font-weight: 600;
}

.type-card span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}

.steps {
  counter-reset: passo;
  margin-top: 1.6rem;
}

.steps li {
  counter-increment: passo;
  position: relative;
  padding-left: 3.2rem;
  padding-block: 0.55rem;
}

.steps li::before {
  content: counter(passo, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--ivory);
}

.steps li p {
  font-size: 0.97rem;
}

.contact-rows {
  display: grid;
  gap: 0;
  margin-top: 1.4rem;
}

.contact-rows li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  padding-block: 1.05rem;
  border-bottom: 1px dashed var(--line);
}

.contact-rows li:last-child {
  border-bottom: 0;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

.contact-value {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown-deep);
}

.contact-value a {
  border-bottom: 1px solid var(--gold-soft);
  transition: color 0.2s ease;
}

.contact-value a:hover {
  color: var(--gold);
}

.tel-big {
  font-size: 1.9rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.4rem;
  padding-block: 1.25rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  transition: color 0.2s ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover {
  color: var(--gold);
}

.faq-list summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  padding-bottom: 1.4rem;
  color: var(--taupe);
  font-size: 0.96rem;
  max-width: 56rem;
}

.site-footer {
  background: var(--footer-bg);
  color: #efe6d5;
  border-top: 2px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.6rem, 5vw, 3.8rem);
}

.footer-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ivory);
}

.footer-tag {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(239, 230, 213, 0.7);
  max-width: 26rem;
}

.footer-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(239, 230, 213, 0.85);
  font-size: 0.93rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-base {
  border-top: 1px solid rgba(239, 230, 213, 0.15);
  padding-block: 1.1rem;
  font-size: 0.8rem;
  color: rgba(239, 230, 213, 0.6);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .service-card:hover {
    transform: none;
  }

  .faq-list summary::after {
    transition: none;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .svc-block {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    max-width: 30rem;
    margin-inline: auto;
  }

  .card-grid,
  .duo,
  .type-sample {
    grid-template-columns: 1fr;
  }

  .service-gallery--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-card--third,
  .proof-card--half {
    grid-column: span 3;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.4rem;
  }

  .site-nav li + li {
    border-top: 1px solid var(--sand);
  }

  .site-nav a:not(.btn) {
    display: block;
    padding-block: 0.85rem;
  }

  .site-nav .nav-cta {
    margin-top: 1rem;
    justify-content: center;
  }

  .nav-open .site-nav {
    display: block;
  }
}

@media (max-width: 640px) {
  .service-gallery,
  .service-gallery--three {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .steps li {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    display: grid;
  }

  .proof-card--third,
  .proof-card--half {
    grid-column: 1 / -1;
  }

  .proof-media,
  .proof-media--wide {
    aspect-ratio: 4 / 5;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-value {
    font-size: 1.15rem;
  }

  .tel-big {
    font-size: 1.5rem;
  }
}
