/*
Theme Name: Wiigwaas Design
Theme URI: https://wiigwaasdesign.com/
Author: John Fisher
Description: Custom theme for Wiigwaas Design.
Version: 2.0.9
License: GPL-2.0-or-later
Text Domain: wiigwaas-design
Tags: custom-logo, custom-menu, portfolio
*/

/* =========================================================
   ROOT VARIABLES
========================================================= */
:root{
  --bg:#FFFFFF;
  --ink:#171717;
  --muted:#5c5c5c;

  --gold:#a8781b;
  --gold2:#c89a34;
  --goldHover:#ffd27a;

  --border:rgba(0,0,0,.08);
  --borderDark:rgba(255,255,255,.10);

  --radius:18px;
  --radius-lg:26px;
  --max:1120px;

  --logo-max: 200px;

  --soft-shadow: 0 18px 55px rgba(0,0,0,.10);
  --card-shadow: 0 22px 70px rgba(0,0,0,.10);

 /* --grain: url("assets/images/texture.png");
  --paper-texture: url("assets/images/textures/paper-texture.png");
 */

  --hero-height: 560px;
  --hero-overlay: .70;
  --glass: rgba(25,18,12,.42);
  --glass-strong: rgba(25,18,12,.55);
  --glass-border: rgba(255,255,255,.14);
  --glass-shadow: 0 24px 80px rgba(0,0,0,.45);
  --blur: 14px;

  --cta-gold1:#d2a84b;
  --cta-gold2:#a8781b;
  --cta-glow: 0 18px 45px rgba(200,154,52,.35);

  --about-hero: url("assets/images/about-hero.jpg");
}




/* =========================================================
   BASE
========================================================= */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  background:var(--bg);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 22px}

h1,h2,h3{
  font-family:Georgia,"Times New Roman",Times,serif;
  letter-spacing:-.02em;
}
p{color:var(--muted)}

.site-wrapper {
  min-height: 100vh;     /* Full viewport height */
  display: flex;
  flex-direction: column;
}

/* Your main content area */
.site-wrapper > main {
  flex: 1 0 auto;        /* Pushes footer down */
}

/* Footer */
.site-footer {
  flex-shrink: 0;
}
/* =========================================================
   GLOBAL BUTTONS
========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:12px;
  font-weight:800;
  border:1px solid rgba(0,0,0,.14);
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.btn-primary{
  background:linear-gradient(180deg,var(--cta-gold1),var(--cta-gold2));
  color:#111;
  border-color: rgba(255,210,122,.40);
  box-shadow: var(--cta-glow), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.btn-primary:hover{filter:brightness(1.06);transform:translateY(-1px)}
.btn-secondary{
  background:rgba(255,255,255,.60);
  color:#111;
  border-color: rgba(0,0,0,.14);
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}
.btn-secondary:hover{background:rgba(255,255,255,.78);transform:translateY(-1px)}

/* =========================================================
   HEADER
========================================================= */
.site-wrapper .site-header{
  position: relative;
  top:0;
  z-index:50;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  background:rgba(0,0,0,.86);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:12px 0;
}
.header-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 0;
}
.site-header .brand{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
}
.site-header .custom-logo-link{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  max-width: var(--logo-max) !important;
}
.site-header .custom-logo-link img,
.site-header img.custom-logo{
  width: var(--logo-max) !important;
  max-width: var(--logo-max) !important;
  height:auto !important;
  display:block !important;
}
.site-header .fallback-logo{
  width: var(--logo-max) !important;
  max-width: var(--logo-max) !important;
  height:auto !important;
  display:block !important;
}
.site-header .site-nav ul,
.site-header .site-nav .menu{
  list-style:none !important;
  display:flex !important;
  gap:22px;
  justify-content:center;
  align-items:center;
  padding:0 !important;
  margin:0 !important;
  flex-wrap:wrap;
}
.site-header .site-nav a{
  font-weight:600;
  opacity:.95;
  color: var(--gold2);
}
.site-header .site-nav a:hover{
  opacity:1;
  text-decoration:underline;
  text-underline-offset:4px;
  color: var(--goldHover);
}

/* =========================================================
   HERO (Card-centered)
========================================================= */
.hero.hero-carousel.hero--card{
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 78vh, 760px);
  padding: 0;
}

/* background slides */
.hero--card .hero-slides{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero--card .hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 800ms ease, transform 1200ms ease;
  background-image: var(--bg);
  background-size: cover;
  background-position: center-top;
  background-repeat: no-repeat;
}
.hero--card .hero-slide.is-active{
  opacity: 1;
  transform: scale(1);
}
.hero--card .hero-slide::before,
.hero--card .hero-slide::after{
  content: none !important;
}

.hero--card .hero-slide.slide-1{
  background-position-x: 5px !important;
  background-position-y: 15% !important;
  background-size: cover;
  background-repeat: none;
}



/* container */
.hero--card .hero-inner{
  position: relative;
  z-index: 5;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
  perspective: 900px;
}

/* card */
.hero--card .hero-card{
  position: relative;
  width: 100%;
  border-radius: 18px;
  padding: 26px 26px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;

  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 180ms ease, box-shadow 250ms ease;

  display:flex;
  flex-direction:column;
  align-items:center;
}
.hero--card .hero-card:hover{
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.hero--card .hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%),
    rgba(255,255,255,.18),
    rgba(255,255,255,0) 55%);
  opacity:.9;
}

.hero--card .hero-card__title{
  margin: 0 0 12px;
  width: 100%;
  text-align:center;
  line-height: 1.05;
}

.hero--card .hero-card__lead{
  margin: 0 auto 16px;
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  text-align:center;
}

.hero--card .hero-card__actions{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* hero buttons */
.hero--card .btn.btn-primary{
  background: linear-gradient(180deg,var(--cta-gold1),var(--cta-gold2));
  color:#111;
  border: 1px solid rgba(255,210,122,.45);
  box-shadow: 0 0 0 1px rgba(255,210,122,.18) inset;
}
.hero--card .btn.btn-secondary{
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.18);
}

/* dots */
.hero--card .hero-dots{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  pointer-events: auto;
}
.hero--card .hero-dots .dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.22);
  cursor: pointer;
}
.hero--card .hero-dots .dot.is-active{
  background: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.95);
  transform: scale(1.2);
}

/* =========================================================
   REVEAL (headline letters + paragraph words)
   IMPORTANT: spacing is controlled ONLY by .space (headline)
========================================================= */
.reveal-text,
.reveal-words{
  opacity: 0;
  visibility: hidden;
}
.reveal-text,
.reveal-words{ display:inline-block; }

/* headline must be block-level to center perfectly */
.hero--card .hero-card__title.reveal-text{
  display:block;
  width:100%;
  margin-left:auto;
  margin-right:auto;
}

/* LETTER REVEAL */
.reveal-text .char{
  display:inline-block;
  opacity:0;
  transform: translateY(12px);
  filter: blur(6px);
  transition:
    opacity 1.2s ease,
    transform 1.4s cubic-bezier(.22,.61,.36,1),
    filter 1.4s ease;
  transition-delay: calc(var(--i) * 150ms);
  will-change: opacity, transform, filter;
}
.reveal-text.is-visible .char{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* headline words: DO NOT add margins (prevents giant gaps) */
.reveal-text .word{
  display:inline-block;
  white-space:nowrap;
  margin:0;
  padding:0;
}

/* ONLY place we control word spacing for the headline */
.reveal-text .space{
  display:inline-block;
  width: .25em;   /* ✅ closer words. try .08em - .16em */
}

/* WORD REVEAL (paragraphs) */
.reveal-words .word{
  display:inline-block;
  opacity:0;
  transform: translateY(14px);
  filter: blur(6px);
  transition:
    opacity 1.05s cubic-bezier(.2,.8,.2,1),
    transform 1.25s cubic-bezier(.2,.8,.2,1),
    filter 1.25s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i) * 70ms);
  will-change: opacity, transform, filter;
  margin-right: .18em; /* ✅ normal spacing */
}
.reveal-words .word:last-child{ margin-right:0; }
.reveal-words.is-visible .word{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* Force sub-text to ALWAYS start later than headline */
.hero-lead.reveal-words .word{
  transition-delay: calc(1200ms + (var(--i) * 220ms));
}


.reveal-text.is-visible,
.reveal-words.is-visible{
  opacity: 1;
  visibility: visible;
}

/* Typography */
.hero-headline{
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4.5vw, 4.15rem);
  font-weight: 420;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: rgba(255,255,255,.96);
  text-shadow:
    0 1px 1px rgba(0,0,0,.15),
    0 14px 45px rgba(0,0,0,.40);
}
.hero-subline{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin-top: 20px;
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  .reveal-text,
  .reveal-words{
    opacity:1 !important;
    visibility:visible !important;
  }
  .reveal-text .char,
  .reveal-words .word{
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
    transition:none !important;
  }
}

/* Subtext: slower and more subtle than headline */
.reveal-text--sub .char{
  transition-delay: calc(var(--i) * 100ms); /* faster reading than headline */
  transition-duration: 1.1s, 1.25s, 1.25s;
  transform: translateY(8px);
  filter: blur(4px);
  opacity: 0;
}

/* =========================================================
   VALUE PILL
========================================================= */
.value-strip{
  position: relative;
  z-index: 20;
  max-width: var(--max);
  margin: auto 0;
  padding: 0 22px 18px;
}
.value-pill{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  box-shadow:
    0 18px 55px rgba(0,0,0,.12),
    0 1px 0 rgba(255,255,255,.85) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.value-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  padding: 18px 22px;
  min-height: 74px;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(0,0,0,.62);
}
.value-item + .value-item{
  border-left: 1px solid rgba(0,0,0,.08);
}
.value-item svg,
.value-item img,
.value-item i{
  width: 22px;
  height: 22px;
  display:inline-block;
  flex: 0 0 auto;
  opacity: .9;
}

/* =========================================================
   SECTIONS
========================================================= */
.section{
  padding:62px 0;
  position:relative;
}
.section::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:140px;
  height:1px;
  background:rgba(0,0,0,.08);
}
.section-title{
  text-align:center;
  margin-bottom: 26px;
}
.section-title h2{
  font-size: clamp(2.15rem, 3.2vw, 2.8rem);
  margin:0 0 8px;
  color: rgba(0,0,0,.78);
}
.section-title p{
  margin: 0 auto;
  max-width: 62ch;
  color: rgba(0,0,0,.52);
}

/* =========================================================
   SERVICES
========================================================= */
.section#services{
  position: relative;
  padding: 84px 0 92px;
  overflow:hidden;
  background: transparent;
}
.section#services.section::before{display:none;}

.section#services::before{
  content:"";
  position:absolute;
  inset: -80px 0 -80px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,0,0,.05), transparent 55%),
    linear-gradient(180deg, rgba(246,241,234,.98), rgba(247,242,236,.995));
  z-index:0;
  pointer-events:none;
}
.section#services::after{
  content:"";
  position:absolute;
  inset:-80px 0 -80px 0;
  background-image: var(--grain);
  background-size: cover;
  background-position: center;
  opacity: .14;
  filter: contrast(.95) saturate(.9);
  z-index:0;
  pointer-events:none;
}
.section#services .container{ position:relative; z-index:1; }

.section#services .section-title p{
  margin: 8px auto 0;
  font-size: .98rem;
  line-height: 1.55;
  color: rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
}
.section#services .section-title p::before,
.section#services .section-title p::after{
  content:"";
  height: 1px;
  width: 110px;
  background: linear-gradient(to right, transparent, rgba(200,154,52,.95), transparent);
  opacity:.9;
}

.services-grid{
  margin-top: 34px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
}
.services-grid .card{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 22px 18px;
  min-height: 220px;
  box-shadow:
    0 14px 40px rgba(0,0,0,.10),
    0 1px 0 rgba(255,255,255,.75) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .18s ease, box-shadow .18s ease;
}
.services-grid .card:hover{
  transform: translateY(-3px);
  box-shadow:
    0 18px 55px rgba(0,0,0,.12),
    0 1px 0 rgba(255,255,255,.78) inset;
}
.services-grid .card svg,
.services-grid .card img,
.services-grid .card i,
.services-grid .card [class*="icon"],
.services-grid .card .icon,
.services-grid .card .service-icon{
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
  margin: 0 auto 12px;
  display:block;
}
.services-grid .card h3{
  margin: 10px 0 8px;
  font-size: 1.05rem;
  color: rgba(0,0,0,.76);
}
.services-grid .card p{
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(0,0,0,.54);
}

/* =========================================================
   PORTFOLIO
========================================================= */
.portfolio{
  padding: 92px 0 98px;
  background: linear-gradient(180deg, #0f0f0f, #171717);
  position: relative;
  overflow:hidden;
  isolation:isolate;
  color:#f5f5f5;
}
.portfolio::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.10), rgba(0,0,0,0) 55%),
    var(--grain);
  background-size: cover;
  background-position: center;
  opacity: .22;
  pointer-events:none;
  z-index:0;
}
.portfolio .container{ position:relative; z-index:1; }
.portfolio .section-title h2{ color: rgba(255,255,255,.92); }
.portfolio .section-title p{
  color: rgba(255,255,255,.70);
  font-size: .92rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
}
.portfolio .section-title p::before,
.portfolio .section-title p::after{
  content:"";
  height: 1px;
  width: 110px;
  background: linear-gradient(to right, transparent, rgba(200,154,52,.95), transparent);
  opacity:.9;
}

.portfolio-grid{
  margin-top: 34px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.work-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
  transition: transform .18s ease, box-shadow .18s ease;
}
.work-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 70px rgba(0,0,0,.62);
}
.work-shot{ position:relative; }
.work-shot img{
  width:100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}
.work-shot::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.62));
}
.work-body{ padding: 14px 16px 16px; }
.work-body h3{
  margin: 0 0 6px;
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
}
.meta{
  margin:0;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
}
.center-actions{
  display:flex;
  justify-content:center;
  margin-top: 26px;
}

/* =========================================================
   CONTACT
========================================================= */
.section#contact{
  position: relative;
  padding: 84px 0 96px;
  background: linear-gradient(180deg, rgba(246,241,234,.98), rgba(247,242,236,.995));
  overflow:hidden;
}
.section#contact.section::before{ display:none; }
.section#contact::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--grain);
  background-size: cover;
  background-position: center;
  opacity: .14;
  pointer-events:none;
}
.section#contact .container{ position:relative; z-index:1; }
.section#contact .card{
  max-width: 760px;
  margin: 26px auto 0;
  padding: 18px 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  box-shadow:
    0 16px 45px rgba(0,0,0,.10),
    0 1px 0 rgba(255,255,255,.80) inset;
}
.section#contact .card p{
  margin:0;
  color: rgba(0,0,0,.56);
  line-height: 1.55;
  font-size: .98rem;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer{
  background:#0b0b0b;
  color:rgba(255,255,255,.86);
  padding:34px 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.site-footer .footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
}
.site-footer .footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.site-footer .footer-brand img{
  width:280px !important;
  max-width:280px !important;
  height:auto !important;
  display:block;
  opacity:.95;
}
.site-footer .small{
  margin:0;
  font-size:.95rem;
  color:rgba(255,255,255,.72);
}
.site-footer .footer-nav{ margin-left:auto; }
.site-footer .footer-nav ul,
.site-footer .footer-nav .menu{
  list-style:none;
  display:flex;
  gap:18px;
  padding:0;
  margin:0;
  flex-wrap:wrap;
  align-items:center;
}
.site-footer .footer-nav a{
  color:rgba(200,154,52,.92);
  text-decoration:none;
  font-weight:600;
}
.site-footer .footer-nav a:hover{
  color:var(--goldHover);
  text-decoration:underline;
  text-underline-offset:4px;
}

/* =========================================================
   Scroll Reveal (site-wide)
========================================================= */
.fx-reveal{
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  transition:
    opacity .85s ease,
    transform 1.0s cubic-bezier(.22,.61,.36,1),
    filter 1.0s ease;
  will-change: opacity, transform, filter;
}
.fx-reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.fx-reveal.delay-1{ transition-delay: 100ms; }
.fx-reveal.delay-2{ transition-delay: 120ms; }
.fx-reveal.delay-3{ transition-delay: 130ms; }
.fx-reveal.delay-4{ transition-delay: 140ms; }

@media (prefers-reduced-motion: reduce){
  .fx-reveal{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}


/* =========================
   FLAT HERO (remove the card look) If You Want. Keep places here at the bottom. Delete if you want the card look.
========================= */

/* Remove the glass card background/border/shadow/blur */
.hero--card .hero-card{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Remove the sheen layer */
.hero--card .hero-card::after{
  content: none !important;
}

/* Optional: tighten spacing so it feels more “flat” */
.hero--card .hero-card{
  padding: 0 !important;
}

/* Make text pop against the photo */
.hero--card .hero-card__title{
  text-shadow: 0 12px 40px rgba(0,0,0,.55) !important;
}
.hero--card .hero-card__lead{
  text-shadow: 0 10px 28px rgba(0,0,0,.45) !important;
}

/* Optional: keep buttons readable on busy backgrounds */
.hero--card .hero-card__actions .btn{
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 980px){
  .value-strip{ margin-top: -34px; }
  .value-pill{ grid-template-columns: 1fr; border-radius: 22px; }
  .value-item + .value-item{ border-left: 0; border-top: 1px solid rgba(0,0,0,.08); }

  .services-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .portfolio-grid{ grid-template-columns: 1fr; }

  .portfolio .section-title p::before,
  .portfolio .section-title p::after{ width: 80px; }

  .hero--card .hero-card{ padding: 22px 18px; }
}

@media (max-width: 700px){
  .site-footer .footer-inner{
    justify-content:center;
    text-align:center;
  }
  .site-footer .footer-brand{justify-content:center;}
  .site-footer .footer-nav{margin-left:0;}
  .site-footer .footer-nav ul,
  .site-footer .footer-nav .menu{justify-content:center;}
}

@media (max-width: 520px){
  .services-grid{ grid-template-columns: 1fr; }

  .portfolio .section-title p{
    flex-direction: column;
    gap: 8px;
  }
  .portfolio .section-title p::before,
  .portfolio .section-title p::after{ width: 110px; }
}
