/* ==========================================================================
   Borda Designs — stylesheet
   Tokens first, then base, layout, components, responsive.
   ========================================================================== */

:root{
  /* --- color: warm editorial neutrals + brass accent --- */
  --ink:        #1c1917;
  --ink-soft:   #44403c;
  --paper:      #faf7f2;
  --paper-alt:  #f2ede4;
  --border:     #e4dcce;
  --gold:       #9c7a3c;
  --gold-light: #b6935a;

  /* niche accent tags (nod to the moodboard color-families, used sparingly) */
  --rose:  #a9666a;
  --slate: #4f5b66;
  --clay:  #ab6a45;
  --sage:  #6c7d63;

  /* --- type --- */
  --font-serif: 'Fraunces', 'Times New Roman', serif;
  --font-sans:  'Karla', -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- spacing scale --- */
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-2xl: 10rem;

  /* --- motion --- */
  --ease: cubic-bezier(.16,.84,.44,1);
  --dur-fast: 280ms;
  --dur-med: 630ms;

  --container: 1200px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

html{ background: var(--paper); }
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  isolation: isolate;
}

h1,h2,h3{
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}

p{ margin: 0 0 1em; color: var(--ink-soft); }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
button{ font-family: inherit; }
ul{ margin: 0; padding: 0; list-style: none; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px){ .container{ padding: 0 3rem; } }

.skip-link{
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: .75rem 1.25rem; z-index: 1000;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

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

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 2.1rem;
  border-radius: 2px;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn:hover{ transform: translateY(-2px); }
.btn--primary{ background: var(--ink); color: var(--paper); }
.btn--primary:hover{ background: #000; }
.btn--ghost{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover{ background: var(--ink); color: var(--paper); }
.btn--gold{ background: var(--gold); color: #fff; }
.btn--gold:hover{ background: var(--gold-light); }
.btn--outline{ background: transparent; color: var(--paper); border-color: rgba(250,247,242,.4); }
.btn--outline:hover{ border-color: var(--paper); }
.btn--block{ width: 100%; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 1.1rem 0;
  transition: padding var(--dur-med) var(--ease);
}
.nav.is-scrolled{
  padding-top: .7rem;
}
.nav__inner{
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .7rem .75rem .7rem 1.5rem;
  box-shadow: 0 16px 36px -20px rgba(28,25,23,.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow var(--dur-med) var(--ease);
}
.nav__inner::before{
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(250,247,242,.88);
  backdrop-filter: blur(14px);
  border-radius: inherit;
}
.nav.is-scrolled .nav__inner{
  box-shadow: 0 20px 40px -18px rgba(28,25,23,.4);
}

.nav__logo{
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: .01em;
}
.nav__logo span{ color: var(--gold); font-style: italic; }
.nav__logo--footer{ font-size: 1.5rem; }

.nav__links{
  display: none;
  align-items: center;
  gap: 2.25rem;
  font-size: .95rem;
}
.nav__links a:not(.nav__cta){ position: relative; padding-bottom: 4px; }
.nav__links a:not(.nav__cta)::after{
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--ink);
  transition: width var(--dur-fast) var(--ease);
}
.nav__links a:not(.nav__cta):hover::after{ width: 100%; }
.nav__links a.is-active:not(.nav__cta){ color: var(--gold); }
.nav__links a.is-active:not(.nav__cta)::after{ width: 100%; background: var(--gold); }
.nav__cta{
  border: 1px solid var(--ink);
  padding: .55rem 1.25rem;
  border-radius: 999px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav__cta:hover{ background: var(--ink); color: var(--paper); }

.nav__toggle{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav__toggle span{
  display: block; height: 1px; width: 100%;
  background: var(--ink);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 900px){
  .nav__links{ display: flex; }
  .nav__toggle{ display: none; }
}

/* mobile menu overlay */
@media (max-width: 899px){
  .nav__links{
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    font-size: 1.5rem;
    font-family: var(--font-serif);
    transform: translateY(-100%);
    transition: transform var(--dur-med) var(--ease);
  }
  .nav__links.is-open{ display: flex; transform: translateY(0); }
  .nav__cta{ margin-top: 1rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}
.site-aura{
  position: fixed; inset: 0; z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.aura{
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.aura--blush{
  width: 30vw; height: 30vw;
  min-width: 360px; min-height: 360px;
  max-width: 540px; max-height: 540px;
  top: -8%; left: -8%;
  background: #f7c6d3;
  opacity: .6;
  filter: blur(75px);
}
.aura--pink{
  width: 30vw; height: 30vw;
  min-width: 340px; min-height: 340px;
  max-width: 500px; max-height: 500px;
  bottom: -12%; right: -4%;
  background: #ee9fb6;
  opacity: .55;
  filter: blur(80px);
}
.aura--pink-soft{
  width: 24vw; height: 24vw;
  min-width: 300px; min-height: 300px;
  max-width: 440px; max-height: 440px;
  bottom: -10%; left: -6%;
  background: #f9d5de;
  opacity: .5;
  filter: blur(85px);
}
.eyebrow{
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow--light{ color: var(--gold-light); }

.hero__title{
  font-size: clamp(2.4rem, 6vw, 4.75rem);
  max-width: 23ch;
  margin: 0 auto;
}
.hero__name-input{
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  border-bottom: 2px dashed var(--gold);
  padding: 0 .05em .02em;
  margin: 0 .05em;
  display: inline-block;
  min-width: 1ch;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  text-align: center;
  vertical-align: baseline;
  outline: none;
  border-radius: 0;
  cursor: text;
  animation: heroNameHint 3.4s ease-in-out 2.5s 2;
}
.hero__name-input:empty::before{
  content: attr(data-placeholder);
  color: inherit;
  opacity: 1;
}
.hero__name-input:empty{
  /* An empty contenteditable has no real caret position to hit-test —
     text-align alone decides where the blinking cursor renders. Right-align
     while empty so it lands after "Business," not centered mid-placeholder. */
  text-align: right;
}
.hero__name-input:focus{
  border-bottom-style: solid;
  border-bottom-color: var(--gold-light);
  animation: none;
}
@keyframes heroNameHint{
  0%, 100%{ border-bottom-color: var(--gold); }
  50%{ border-bottom-color: var(--gold-light); }
}
.hero__name-wrap{
  display: inline-flex;
  align-items: baseline;
  gap: .08em;
}
.hero__edit-icon{
  width: .55em;
  height: .55em;
  color: var(--gold);
  align-self: center;
  opacity: .85;
  animation: heroEditIconPulse 3.4s ease-in-out 2.5s 2;
}
.hero__name-input:focus ~ .hero__edit-icon{
  opacity: 0;
}
@keyframes heroEditIconPulse{
  0%, 100%{ transform: scale(1); opacity: .7; }
  50%{ transform: scale(1.25); opacity: 1; }
}
.hero__sub{
  max-width: 46ch;
  margin: 1.75rem auto 0;
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.hero__actions{
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__actions .btn{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1950ms var(--ease), transform 1950ms var(--ease);
}
.hero__actions .btn.is-in{
  opacity: 1;
  transform: translateY(0);
}
/* ==========================================================================
   Section shell
   ========================================================================== */
.section{ padding: var(--space-xl) 0; }
.section--alt{ background: var(--paper-alt); }
.section__title{
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 20ch;
  margin-bottom: 1.25rem;
}
.section__sub{
  max-width: 56ch;
  font-size: 1.05rem;
}

/* ==========================================================================
   Portfolio
   ========================================================================== */
.portfolio-grid{
  margin-top: var(--space-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px){
  .portfolio-grid{ grid-template-columns: repeat(2, 1fr); }
  .p-card--wide{ grid-column: span 2; }
}
@media (min-width: 1024px){
  .portfolio-grid{ grid-template-columns: repeat(3, 1fr); }
  .p-card--wide{ grid-column: span 1; }
}

.p-card{
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.p-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(28,25,23,.25);
}
.p-card__media{
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--paper-alt), var(--paper));
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.p-card__mono{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 4rem;
  color: var(--border);
  transition: transform var(--dur-med) var(--ease), color var(--dur-med) var(--ease);
}
.p-card:hover .p-card__mono{ transform: scale(1.12); color: var(--gold-light); }
.p-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform var(--dur-med) var(--ease);
}
.p-card:hover .p-card__media img{ transform: scale(1.06); }
.p-card__body{ padding: 1.75rem; }
.p-card__body h3{ font-size: 1.3rem; margin: .75rem 0 .5rem; }
.p-card__body p{ font-size: .95rem; margin-bottom: 1rem; }

.p-tag{
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 100px;
  color: #fff;
}
.p-tag--rose{ background: var(--rose); }
.p-tag--slate{ background: var(--slate); }
.p-tag--clay{ background: var(--clay); }
.p-tag--sage{ background: var(--sage); }
.p-tag--gold{ background: var(--gold); }

.p-card__link{
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .9rem; font-weight: 500;
  color: var(--ink);
}
.arrow{
  width: 16px; height: 8px;
  position: relative;
  display: inline-block;
}
.arrow::before, .arrow::after{
  content: ''; position: absolute;
}
.arrow::before{
  left: 0; top: 3px; width: 14px; height: 1px; background: currentColor;
}
.arrow::after{
  right: 0; top: -1px; width: 6px; height: 6px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.p-card:hover .arrow{ animation: arrowNudge .7s var(--ease); }
@keyframes arrowNudge{
  50%{ transform: translateX(4px); }
}

/* single-item spotlight layout (used when the grid holds only one case study) */
.portfolio-grid--single{
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: var(--space-lg) auto 0;
}
@media (min-width: 700px){
  .p-card--spotlight{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
  }
  .p-card--spotlight .p-card__media{
    aspect-ratio: auto;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .p-card--spotlight .p-card__body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.75rem;
  }
  .p-card--spotlight .p-card__body h3{ font-size: 1.7rem; }
  .p-card--spotlight .p-card__body p{ font-size: 1.02rem; }
}

/* ==========================================================================
   About
   ========================================================================== */
body.page-about{
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
body.page-about main{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
}
body.page-about .section{
  padding: 0;
}
.about{
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-top: 1rem;
}
@media (min-width: 900px){
  .about{ grid-template-columns: .85fr 1.15fr; gap: 5rem; }
}
.about__frame{
  padding: 14px;
  border: 1px solid var(--gold);
}
.about__photo{
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--border);
}
.about__text{ font-size: 1.05rem; }

.bubble-line{
  overflow-x: hidden;
  overflow-y: visible;
  padding: 18px 0 2.5rem;
  margin-top: 1.5cm;
}
.bubble-line__track{
  display: flex;
  align-items: center;
  width: max-content;
  animation: bubbleScroll 30s linear infinite;
}
.bubble-line .bubble{
  flex: none;
  display: block;
  width: var(--size, 10px);
  height: var(--size, 10px);
  margin-right: 3rem;
  border-radius: 50%;
  background: var(--gold);
  opacity: .85;
  animation: bubbleFloat 4.2s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes bubbleScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-25%); }
}
@keyframes bubbleFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-7px); }
}

.stat-row{
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stat{ display: flex; flex-direction: column; }
.stat__num{
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
}
.stat__label{
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ==========================================================================
   Process
   ========================================================================== */
.process-grid{
  margin-top: var(--space-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 700px){ .process-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ .process-grid{ grid-template-columns: repeat(4, 1fr); } }

.process-step{
  padding-top: 1.85rem;
  position: relative;
}
.process-step::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='12' viewBox='0 0 56 12'%3E%3Cpath d='M2 6H16M12 1L19 6L12 11' stroke='%239c7a3c' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: space;
}
@media (max-width: 699px){
  .process-step::before{
    left: 50%;
    right: auto;
    width: 220px;
    transform: translateX(-50%);
  }
}
.process-step__num{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}
.process-step h3{ font-size: 1.2rem; margin-bottom: .5rem; }
.process-cta{
  margin-top: var(--space-xl);
  width: 100%;
  text-align: center;
}
.process-cta .btn{
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}
.process-step p{ font-size: .95rem; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.price-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: var(--space-lg);
}
.price-card{
  flex: 1 1 380px;
  max-width: 460px;
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 2.5rem;
  border-radius: 4px;
}
.price-card .btn--primary{
  display: flex;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid var(--paper);
}
.price-card__top{
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(250,247,242,.15);
}
.price-card__label{
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .5rem;
}
.price-card__amount{
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
}
.price-card__note{
  font-size: .85rem;
  color: rgba(250,247,242,.55);
  margin-top: .4rem;
}
.price-card__list{ margin-bottom: 2rem; }
.price-card__list li{
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .9rem;
  font-size: .97rem;
  color: rgba(250,247,242,.85);
}
.price-card__list li::before{
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 10px; height: 5px;
  border-left: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  transform: rotate(-45deg);
}


/* ==========================================================================
   CTA / Contact
   ========================================================================== */
.cta{
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-2xl) 0;
  text-align: center;
}
.cta__inner{ display: flex; flex-direction: column; align-items: center; }
.cta__title{
  color: var(--paper);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  max-width: 18ch;
}
.cta__sub{
  color: rgba(250,247,242,.65);
  max-width: 42ch;
  margin: 1.5rem 0 0;
}
.cta__actions{
  margin-top: 2.25rem;
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}

/* ==========================================================================
   Contact Modal
   ========================================================================== */
.modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med) var(--ease);
}
.modal.is-open{
  visibility: visible;
  opacity: 1;
}
.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(28,25,23,.6);
  backdrop-filter: blur(4px);
}
.modal__dialog{
  position: relative;
  background: var(--paper);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem 2.5rem;
  border-radius: 4px;
  box-shadow: 0 40px 80px -20px rgba(28,25,23,.45);
  transform: translateY(16px) scale(.98);
  transition: transform var(--dur-med) var(--ease);
}
.modal.is-open .modal__dialog{
  transform: translateY(0) scale(1);
}
.modal__close{
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease);
}
.modal__close:hover{ color: var(--ink); }
.modal__title{
  font-size: 1.6rem;
  margin-bottom: .5rem;
}
.modal__sub{
  font-size: .95rem;
  margin-bottom: 1.75rem;
}
.modal__form{
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.field{
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.field__label{
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field textarea{
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper-alt);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: .75rem .9rem;
  transition: border-color var(--dur-fast) var(--ease);
  resize: vertical;
}
.field input:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--gold);
}
.modal__form .btn{
  margin-top: .5rem;
  cursor: pointer;
}
.modal__form .btn:disabled{
  opacity: .6;
  cursor: not-allowed;
}
.modal__error{
  margin: .9rem 0 0;
  font-size: .9rem;
  color: var(--rose);
}
.modal__error a{ text-decoration: underline; }
.modal__success{
  text-align: center;
  padding: 1.5rem 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{ padding: 2.5rem 0; }
.footer__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 700px){
  .footer__inner{ flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__meta{ font-size: .85rem; color: var(--ink-soft); margin: 0; }
.footer__email{ font-size: .9rem; }
