/*
Theme Name: Needle Street Tattoo
Theme URI: https://needlestreet.com
Author: Needle Street
Description: Minimalistisches One-Page-Theme für Needle Street Tattoo.
Version: 1.0
Text Domain: needlestreet
*/

:root{
  --bg:#fff;
  --text:#0b0b0b;
  --line:rgba(0,0,0,.16);
  --max:1600px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  letter-spacing:.02em;
}
a{color:inherit;text-decoration:none}
.site-header{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  background:#fff;
  z-index:20;
  border-bottom:1px solid rgba(0,0,0,.04);
}
.nav{
  display:flex;
  gap:42px;
  align-items:center;
  font-size:13px;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.nav a{position:relative;padding:29px 0 24px}
.nav a:hover:after,.nav a:first-child:after{
  content:"";
  position:absolute;
  height:1px;
  left:0;right:0;bottom:17px;
  background:#111;
}

.menu-mark{
  position:absolute;
  right:36px;
  width:30px;height:18px;
  border-top:2px solid #111;
  border-bottom:2px solid #111;
}
.hero{
  position:relative;
  min-height:790px;
  overflow:hidden;
  background:#eee;
}
.hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 68%;
  filter:grayscale(100%);
}
.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,1) 0%,rgba(255,255,255,.97) 17%,rgba(255,255,255,.78) 28%,rgba(255,255,255,.24) 42%,rgba(255,255,255,0) 58%);
}
.hero-copy{
  position:relative;
  z-index:2;
  width:min(92%,var(--max));
  margin:0 auto;
  min-height:790px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}
.logo{
  width:min(360px,34vw);
  height:auto;
  display:block;
}
.tagline{
  margin-top:24px;
  font-size:21px;
  letter-spacing:.28em;
  text-transform:uppercase;
}
.quicklinks{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  min-height:148px;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}
.quicklinks a{
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  font-size:18px;
  text-transform:uppercase;
  letter-spacing:.22em;
}
.quicklinks a:not(:last-child):after{
  content:"";
  position:absolute;
  right:0;
  height:62px;
  width:1px;
  background:var(--line);
}
.quicklinks span:after{
  content:"";
  width:54px;
  height:1px;
  display:block;
  background:#111;
  margin:18px auto 0;
}
.gallery{padding:82px 24px 110px;width:min(96%,1800px);margin:0 auto}
.section-title{
  text-align:center;
  font-size:26px;
  text-transform:uppercase;
  letter-spacing:.28em;
  margin:0 0 42px;
}
.gallery-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.gallery-item{margin:0;overflow:hidden;background:#111;aspect-ratio:4/5}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:grayscale(100%);
  transition:filter .42s ease, transform .42s ease;
}
.gallery-item:hover img{
  filter:grayscale(0%);
  transform:scale(1.025);
}
.gallery-btn{
  display:block;
  width:max-content;
  margin:34px auto 0;
  background:#111;
  color:#fff;
  padding:18px 34px;
  font-size:13px;
  letter-spacing:.24em;
  text-transform:uppercase;
}
.contact{
  background:#0d0d0d;
  color:#fff;
  padding:70px 24px;
}
.contact-inner{
  width:min(92%,1200px);
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:40px;
  align-items:flex-end;
}
.contact h2{
  margin:0 0 12px;
  font-weight:400;
  font-size:28px;
  letter-spacing:.25em;
  text-transform:uppercase;
}
.contact p{
  margin:8px 0;
  font-size:14px;
  letter-spacing:.17em;
  text-transform:uppercase;
}
.booking{
  border:1px solid rgba(255,255,255,.7);
  padding:17px 25px;
  letter-spacing:.18em;
  font-size:12px;
  text-transform:uppercase;
}
@media (max-width:900px){
  .nav{gap:18px;font-size:11px}
  
  .menu-mark{right:18px}
  .hero{min-height:650px}
  .hero-copy{min-height:650px}
  .logo{width:290px}
  .tagline{font-size:16px}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:1100px) and (min-width:641px){
  .quicklinks a{font-size:14px;letter-spacing:.16em;}
  .quicklinks span:after{width:42px;}
}
@media (max-width:640px){
  .site-header{height:64px}
  .nav a:nth-child(3),.nav a:nth-child(4){display:none}
  .nav{gap:20px;font-size:10px}
  .hero{min-height:620px}
  .hero-copy{min-height:620px;padding-top:60px;justify-content:flex-start}
  .hero:after{
    background:linear-gradient(180deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.82) 35%,rgba(255,255,255,.15) 72%,rgba(255,255,255,0) 100%);
  }
  .logo{width:250px}
  .tagline{font-size:14px}
  .quicklinks{grid-template-columns:1fr}
  .quicklinks a{min-height:92px}
  .quicklinks a:not(:last-child):after{
    height:1px;width:70%;right:auto;bottom:0;
  }
  .gallery{padding:56px 14px 68px}
  .gallery-grid{grid-template-columns:1fr 1fr;gap:8px}
  .contact-inner{flex-direction:column;align-items:flex-start}
}
@media (hover:none){
  .gallery-item img{filter:grayscale(0%)}
}

.instagram-icon{
  position:absolute; right:32px; width:22px; height:22px; display:block;
}
.instagram-icon svg{
  width:100%; height:100%; fill:none; stroke:#111; stroke-width:1.7;
}
@media (max-width:900px){.instagram-icon{display:none}}

.about{display:grid;grid-template-columns:42% 58%;min-height:720px;background:#fff;overflow:hidden}.about-copy{padding:90px 7vw 90px max(5vw,60px);display:flex;flex-direction:column;justify-content:center}.eyebrow{text-transform:uppercase;letter-spacing:.24em;font-size:18px;margin-bottom:38px}.eyebrow:after{content:"";display:block;width:70px;height:1px;background:#111;margin-top:18px}.about-copy p{font-size:19px;line-height:1.7;max-width:560px;margin:0 0 28px}.about-image-wrap{position:relative;overflow:hidden}.about-image-wrap:before{content:"";position:absolute;z-index:2;inset:0 auto 0 0;width:22%;background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.95) 18%,rgba(255,255,255,0) 100%)}.about-image{width:100%;height:100%;object-fit:cover;filter:grayscale(100%);display:block}@media (max-width:900px){.about{grid-template-columns:1fr}.about-copy{padding:70px 8vw}.about-image-wrap{min-height:560px}.about-image-wrap:before{display:none}}@media (max-width:640px){.about-copy p{font-size:17px}.about-image-wrap{min-height:420px}}

.contact-details{margin-top:34px}
.contact-details p{margin:0 0 18px}
.contact-details a{color:inherit;text-decoration:none}

@media (min-width:1500px){
  .gallery{width:min(94%,1900px)}
  .gallery-grid{gap:22px}
}

.site-footer{background:#fff;color:#111;border-top:1px solid rgba(0,0,0,.12);padding:72px 5vw 28px}
.footer-inner{max-width:1600px;margin:0 auto;display:grid;grid-template-columns:1.25fr 1fr .65fr;gap:70px;align-items:start}
.footer-brand img{width:240px;max-width:100%;height:auto}
.footer-tagline{margin-top:18px;font-size:13px;letter-spacing:.25em;text-transform:uppercase}
.footer-contact h3{font-size:19px;font-weight:500;letter-spacing:.22em;text-transform:uppercase;margin:0 0 30px}
.footer-contact p{font-size:14px;line-height:1.75;letter-spacing:.12em;text-transform:uppercase;margin:0 0 20px}
.footer-contact a,.footer-links a{color:inherit;text-decoration:none}
.footer-links{display:flex;flex-direction:column;gap:16px;font-size:13px;letter-spacing:.18em;text-transform:uppercase}
.footer-links a:hover{text-decoration:underline;text-underline-offset:5px}
.footer-bottom{max-width:1600px;margin:55px auto 0;padding-top:22px;border-top:1px solid rgba(0,0,0,.12);font-size:11px;letter-spacing:.16em;text-transform:uppercase}
@media(max-width:800px){
 .footer-inner{grid-template-columns:1fr;gap:44px}
 .footer-brand img{width:210px}
 .site-footer{padding:55px 7vw 25px}
}

@media (max-width:700px){
  .gallery-grid{grid-template-columns:1fr;gap:14px}
}

.simple-footer{
  background:#fff;
  color:#111;
  padding:72px 5vw 42px;
  border-top:1px solid rgba(0,0,0,.08);
}
.simple-footer-inner{
  width:min(94%,1900px);
  margin:0 auto;
}
.simple-footer-logo{
  width:360px;
  max-width:42vw;
  height:auto;
  display:block;
}
.simple-footer-copy{
  margin-top:34px;
  font-size:13px;
  letter-spacing:.22em;
  text-transform:uppercase;
}
@media (max-width:700px){
  .simple-footer{padding:52px 7vw 34px}
  .simple-footer-inner{width:100%}
  .simple-footer-logo{width:250px;max-width:78vw}
  .simple-footer-copy{font-size:11px;letter-spacing:.16em;margin-top:24px}
}

.contact-actions{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}
.whatsapp-booking{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:14px 22px;
  border:1px solid currentColor;
  border-radius:999px;
  color:inherit;
  text-decoration:none;
  font:inherit;
  letter-spacing:.06em;
  transition:background .2s ease,color .2s ease,transform .2s ease;
}
.whatsapp-booking:hover{
  background:#fff;
  color:#111;
  transform:translateY(-1px);
}
.whatsapp-icon{
  font-size:18px;
  line-height:1;
}
@media(max-width:700px){
  .contact-actions{
    width:100%;
    align-items:stretch;
  }
  .contact-actions .booking,
  .whatsapp-booking{
    width:100%;
    box-sizing:border-box;
  }
}

.simple-footer-bottom{
  margin-top:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  flex-wrap:wrap;
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.legal-links{display:flex;gap:22px;flex-wrap:wrap}
.legal-links a{color:inherit;text-decoration:none}
.legal-links a:hover{text-decoration:underline}
.legal-page{
  background:#fff;color:#111;min-height:100vh;
  padding:72px 5vw 100px;
}
.legal-wrap{width:min(900px,100%);margin:0 auto}
.legal-back{display:inline-block;margin-bottom:56px;color:inherit;text-decoration:none;font-size:13px;letter-spacing:.14em;text-transform:uppercase}
.legal-page h1{font-size:clamp(38px,6vw,72px);margin:0 0 48px;line-height:1}
.legal-page h2{font-size:20px;margin:42px 0 14px}
.legal-page p,.legal-page li{font-size:16px;line-height:1.75}
.legal-page a{color:inherit}
.legal-note{margin-top:50px;padding-top:22px;border-top:1px solid #ddd;font-size:13px!important;color:#555}
@media(max-width:700px){
  .simple-footer-bottom{align-items:flex-start;flex-direction:column;font-size:11px;letter-spacing:.14em}
  .legal-page{padding:48px 7vw 70px}
}

.seo-h1{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Mobile: Termin-/Kontaktblock bündig mit den übrigen Seiteninhalten */
@media (max-width: 700px){
  #kontakt,
  .contact,
  .contact-section,
  .kontakt-buendig{
    box-sizing:border-box;
  }

  #kontakt .contact-inner,
  #kontakt .contact-content,
  .contact .contact-inner,
  .contact-section .contact-inner,
  .kontakt-buendig{
    width:100% !important;
    max-width:none !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }

  #kontakt h2,
  #kontakt .contact-copy,
  #kontakt address,
  .contact h2,
  .contact address,
  .kontakt-buendig h2,
  .kontakt-buendig address{
    margin-left:0 !important;
  }
}

.local-seo-copy{margin-top:28px;padding-top:28px;border-top:1px solid rgba(0,0,0,.18);max-width:560px}.local-seo-copy h2{text-transform:uppercase;letter-spacing:.24em;font-size:18px;line-height:1.4;font-weight:400;margin:0 0 28px}.local-seo-copy p{font-size:19px;line-height:1.7;max-width:560px;margin:0}@media(max-width:640px){.local-seo-copy{margin-top:24px;padding-top:24px}.local-seo-copy h2{font-size:16px;margin-bottom:22px}.local-seo-copy p{font-size:17px}}

/* Gleicher Abstand zwischen den Bildern oberhalb/unterhalb und dem About-Text */
@media (max-width:900px){
  .gallery{padding-bottom:0;}
  .about-copy{padding-top:70px;padding-bottom:70px;}
}
@media (max-width:640px){
  .gallery{padding-bottom:0;}
  .about-copy{padding-top:56px;padding-bottom:56px;}
}

/* Needlestreet Shop – physischer Gutschein */
.shop-section{background:#f6f6f6;padding:96px 5vw}
.shop-inner{width:min(92%,var(--max));margin:0 auto;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);gap:clamp(48px,7vw,110px);align-items:center}
.shop-image-wrap{overflow:hidden;background:#111;aspect-ratio:4/3}
.shop-image-wrap img{width:100%;height:100%;object-fit:cover;display:block}
.shop-copy{max-width:620px}
.shop-eyebrow{margin-bottom:30px}
.shop-copy h2{margin:0 0 26px;text-transform:uppercase;letter-spacing:.19em;font-size:clamp(24px,2.4vw,38px);font-weight:500;line-height:1.25}
.shop-lead,.shop-note{font-size:18px;line-height:1.7;margin:0 0 20px;max-width:610px}
.shop-note{font-size:15px;letter-spacing:.03em;margin-bottom:34px}
.voucher-values{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 28px}
.voucher-value{appearance:none;border:1px solid #111;background:transparent;color:#111;padding:13px 17px;font:inherit;font-size:13px;letter-spacing:.12em;cursor:pointer;transition:.2s ease}
.voucher-value:hover,.voucher-value.active{background:#111;color:#fff}
.shop-order{display:inline-flex;align-items:center;justify-content:center;min-height:50px;background:#111;color:#fff;padding:0 26px;text-transform:uppercase;letter-spacing:.17em;font-size:12px;transition:opacity .2s ease}
.shop-order:hover{opacity:.78}
.shop-shipping{margin-top:20px;font-size:12px;line-height:1.6;letter-spacing:.08em;text-transform:uppercase;color:#555}
@media(max-width:900px){
  .shop-section{padding:70px 8vw}
  .shop-inner{width:100%;grid-template-columns:1fr;gap:46px}
  .shop-copy{max-width:none}
  .shop-image-wrap{aspect-ratio:5/4}
}
@media(max-width:640px){
  .shop-section{padding:56px 7vw}
  .shop-copy h2{font-size:23px;letter-spacing:.14em}
  .shop-lead{font-size:17px}
  .voucher-values{gap:8px}
  .voucher-value{padding:12px 14px;font-size:12px}
  .shop-order{width:100%}
}


/* Zweites Shop-Produkt: Needlestreet Tattoo Aftercare */
.shop-products{display:flex;flex-direction:column;gap:110px}
.shop-product{width:min(92%,var(--max))}
.aftercare-product{padding-top:90px;border-top:1px solid rgba(0,0,0,.16)}
.aftercare-image-wrap{aspect-ratio:4/3}
.aftercare-image-wrap img{object-position:center}
.aftercare-tagline{margin:0 0 24px;text-transform:uppercase;letter-spacing:.18em;font-size:14px;font-weight:500}
.aftercare-price{margin:30px 0 28px;font-size:18px;line-height:1.5;letter-spacing:.08em;font-weight:500}
@media(max-width:900px){
  .shop-products{gap:76px}
  .aftercare-product{padding-top:68px}
}
@media(max-width:640px){
  .shop-products{gap:60px}
  .aftercare-product{padding-top:56px}
  .aftercare-tagline{font-size:13px}
  .aftercare-price{font-size:17px}
}


/* Offizieller TWINT-Zahlbutton */
.twint-payment-note{margin:0 0 18px;font-size:13px;line-height:1.65;letter-spacing:.06em;color:#333}
.twint-button-wrap{display:flex;align-items:center;min-height:58px}
.twint-button{width:auto;height:58px;border-radius:6px;display:flex;justify-content:center;cursor:pointer;background:transparent;border:none;align-items:center;padding:0}
.twint-button img{width:auto;height:58px;display:block}
.twint-button:hover{opacity:.82}
.twint-button:focus-visible{outline:2px solid #111;outline-offset:4px}
@media(max-width:640px){.twint-payment-note{font-size:12px}.twint-button-wrap{justify-content:flex-start}}

/* Aftercare: show more of the original product photo */
.aftercare-image-wrap{aspect-ratio:auto;background:#fff;overflow:visible}
.aftercare-image-wrap img{width:100%;height:auto;object-fit:contain;object-position:center;display:block}


/* Gutschein: wie Aftercare mehr vom Originalbild zeigen */
.voucher-image-wrap{aspect-ratio:auto;background:#fff;overflow:visible}
.voucher-image-wrap img{width:100%;height:auto;object-fit:contain;object-position:center;display:block}

/* Compact language switch */
.language-switch{
  position:absolute;
  right:84px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  align-items:center;
  gap:6px;
  font-size:10px;
  letter-spacing:.14em;
  z-index:3;
}
.lang-btn{
  appearance:none;
  border:0;
  background:transparent;
  padding:5px 2px;
  font:inherit;
  letter-spacing:inherit;
  color:#777;
  cursor:pointer;
}
.lang-btn.active{color:#111;font-weight:600}
.lang-btn:hover{color:#111}
.lang-sep{color:#bbb}
@media(max-width:900px){.language-switch{right:24px}}
@media(max-width:640px){
  .language-switch{right:12px;font-size:9px;gap:4px}
  .lang-btn{padding:5px 1px}
}


/* Shop legal / checkout details */
.shop-terms-check{display:flex;align-items:flex-start;gap:10px;margin:2px 0 8px;font-size:13px;line-height:1.55;color:#333;cursor:pointer;max-width:590px}
.shop-terms-check input{margin:3px 0 0;accent-color:#111;flex:0 0 auto}
.shop-terms-link{margin:0 0 18px;font-size:12px;line-height:1.5}
.shop-terms-link a{color:inherit;text-underline-offset:3px}
.twint-button:disabled{opacity:.35;cursor:not-allowed}
.twint-button:disabled:hover{opacity:.35}
.legal-lang-switch{position:fixed;right:28px;top:24px;z-index:10;background:#fff;padding:4px 6px}
.legal-section[hidden]{display:none!important}
.legal-page ul,.legal-page ol{padding-left:22px}
.legal-page li{margin:7px 0}
.legal-summary{padding:22px 24px;background:#f5f5f5;margin:0 0 38px}
.legal-summary p{margin:0}
@media(max-width:700px){.legal-lang-switch{right:12px;top:12px}.shop-terms-check{font-size:12px}}


/* Aftercare typography aligned with the gift voucher product */
.aftercare-product .shop-copy .shop-lead{margin-bottom:20px;}
.aftercare-product .aftercare-note{font-size:15px;line-height:1.7;letter-spacing:.03em;margin:0 0 34px;}
.aftercare-product .aftercare-price{margin:0 0 28px;font-size:15px;line-height:1.7;letter-spacing:.03em;font-weight:400;}
@media(max-width:640px){
  .aftercare-product .aftercare-note,
  .aftercare-product .aftercare-price{font-size:15px;}
}

/* Mobile header fix: keep navigation fully visible and clear of language switch */
@media (max-width:640px){
  .site-header{
    height:64px;
    min-height:64px;
    padding:0 72px 0 14px;
    justify-content:flex-start;
    overflow:visible;
  }
  .nav{
    width:100%;
    justify-content:flex-start;
    gap:14px;
    font-size:9px;
    letter-spacing:.14em;
    white-space:nowrap;
  }
  .nav a{
    padding:25px 0 22px;
  }
  .nav a:nth-child(1),
  .nav a:nth-child(2),
  .nav a:nth-child(3){display:block;}
  .nav a:nth-child(n+4){display:none;}
  .nav a:hover:after,.nav a:first-child:after{bottom:16px;}
  .language-switch{
    right:12px;
    top:50%;
    transform:translateY(-50%);
    flex-shrink:0;
    background:#fff;
    padding-left:6px;
  }
}

/* Mobile: images full bleed to the viewport edges */
@media (max-width:640px){
  .gallery{
    width:100%;
    padding-left:0;
    padding-right:0;
  }
  .gallery-grid{gap:14px;}
  .gallery-item{width:100%;}

  .about-image-wrap{
    width:100vw;
    margin-left:calc(50% - 50vw);
  }

  .shop-image-wrap,
  .voucher-image-wrap,
  .aftercare-image-wrap{
    width:100vw;
    max-width:none;
    margin-left:calc(50% - 50vw);
  }
}

/* Mobile header: show all six navigation items */
@media (max-width:640px){
  .site-header{
    height:auto;
    min-height:94px;
    padding:12px 12px 10px;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    overflow:visible;
  }
  .nav{
    width:100%;
    padding-right:56px;
    display:grid;
    grid-template-columns:repeat(3, max-content);
    justify-content:start;
    align-items:center;
    column-gap:14px;
    row-gap:8px;
    font-size:8.5px;
    letter-spacing:.12em;
    white-space:nowrap;
  }
  .nav a,
  .nav a:nth-child(1),
  .nav a:nth-child(2),
  .nav a:nth-child(3),
  .nav a:nth-child(4),
  .nav a:nth-child(5),
  .nav a:nth-child(6){
    display:block;
    padding:8px 0 6px;
  }
  .nav a:hover:after,.nav a:first-child:after{bottom:1px;}
  .language-switch{
    right:10px;
    top:12px;
    transform:none;
    font-size:8px;
    gap:3px;
    background:#fff;
    padding:2px 0 2px 5px;
  }
}

/* Mobile header: all menu items on one line */
@media (max-width:640px){
  .site-header{
    height:64px;
    min-height:64px;
    padding:0 10px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    overflow:visible;
  }
  .nav{
    width:calc(100% - 50px);
    padding:0;
    display:flex;
    flex-wrap:nowrap;
    align-items:center;
    justify-content:space-between;
    gap:0;
    font-size:7px;
    letter-spacing:.045em;
    white-space:nowrap;
  }
  .nav a,
  .nav a:nth-child(1),
  .nav a:nth-child(2),
  .nav a:nth-child(3),
  .nav a:nth-child(4),
  .nav a:nth-child(5),
  .nav a:nth-child(6){
    display:block;
    padding:25px 0 21px;
    flex:0 0 auto;
  }
  .nav a:hover:after,.nav a:first-child:after{bottom:17px;}
  .language-switch{
    right:8px;
    top:50%;
    transform:translateY(-50%);
    font-size:7px;
    gap:2px;
    background:#fff;
    padding:3px 0 3px 5px;
  }
}

/* Mobile header: keep Instagram visible next to EN/DE */
@media (max-width:640px){
  .nav{
    width:calc(100% - 78px);
    font-size:6.6px;
    letter-spacing:.025em;
  }
  .language-switch{
    right:31px;
    top:50%;
    transform:translateY(-50%);
    font-size:7px;
    gap:2px;
    padding:3px 2px 3px 4px;
  }
  .instagram-icon{
    display:flex;
    position:absolute;
    right:8px;
    top:50%;
    transform:translateY(-50%);
    width:17px;
    height:17px;
    align-items:center;
    justify-content:center;
    z-index:12;
  }
  .instagram-icon svg{
    width:15px;
    height:15px;
  }
}
